File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
app/settings/default-site Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ server {
2424 }
2525{% endif %}
2626
27+ {%- if value == "444" %}
28+ location / {
29+ return 444;
30+ }
31+ {% endif %}
32+
2733{%- if value == "redirect" %}
2834 location / {
2935 return 301 {{ meta.redirect }};
Original file line number Diff line number Diff line change 1818 <input class =" custom-control-input" name =" value" value =" 404" type =" radio" required <%- value === ' 404' ? ' checked' : ' ' % >>
1919 <div class =" custom-control-label" ><% - i18n (' settings' , ' default-site-404' ) %> </div >
2020 </label >
21+ <label class =" custom-control custom-radio" >
22+ <input class =" custom-control-input" name =" value" value =" 444" type =" radio" required <%- value === ' 444' ? ' checked' : ' ' % >>
23+ <div class =" custom-control-label" ><% - i18n (' settings' , ' default-site-444' ) %> </div >
24+ </label >
2125 <label class =" custom-control custom-radio" >
2226 <input class =" custom-control-input" name =" value" value =" redirect" type =" radio" required <%- value === ' redirect' ? ' checked' : ' ' % >>
2327 <div class =" custom-control-label" ><% - i18n (' settings' , ' default-site-redirect' ) %> </div >
Original file line number Diff line number Diff line change 287287 "default-site" : " Default Site" ,
288288 "default-site-congratulations" : " Congratulations Page" ,
289289 "default-site-404" : " 404 Page" ,
290+ "default-site-444" : " No Response (444)" ,
290291 "default-site-html" : " Custom Page" ,
291292 "default-site-redirect" : " Redirect"
292293 }
You can’t perform that action at this time.
0 commit comments