File tree 3 files changed +11
-0
lines changed
app/settings/default-site
3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ server {
24
24
}
25
25
{% endif %}
26
26
27
+ {%- if value == "444" %}
28
+ location / {
29
+ return 444;
30
+ }
31
+ {% endif %}
32
+
27
33
{%- if value == "redirect" %}
28
34
location / {
29
35
return 301 {{ meta.redirect }};
Original file line number Diff line number Diff line change 18
18
<input class =" custom-control-input" name =" value" value =" 404" type =" radio" required <%- value === ' 404' ? ' checked' : ' ' % >>
19
19
<div class =" custom-control-label" ><% - i18n (' settings' , ' default-site-404' ) %> </div >
20
20
</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 >
21
25
<label class =" custom-control custom-radio" >
22
26
<input class =" custom-control-input" name =" value" value =" redirect" type =" radio" required <%- value === ' redirect' ? ' checked' : ' ' % >>
23
27
<div class =" custom-control-label" ><% - i18n (' settings' , ' default-site-redirect' ) %> </div >
Original file line number Diff line number Diff line change 287
287
"default-site" : " Default Site" ,
288
288
"default-site-congratulations" : " Congratulations Page" ,
289
289
"default-site-404" : " 404 Page" ,
290
+ "default-site-444" : " No Response (444)" ,
290
291
"default-site-html" : " Custom Page" ,
291
292
"default-site-redirect" : " Redirect"
292
293
}
You can’t perform that action at this time.
0 commit comments