Revisions
-
sstorholm revised this gist
Feb 2, 2018 . No changes.There are no files selected for viewing
-
sstorholm revised this gist
Feb 2, 2018 . 1 changed file with 10 additions and 6 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,8 +1,12 @@ server { listen 80 default_server; location / { return 418; } error_page 418 /custom_418.html; location = /custom_418.html { root /var/www/html/errors; internal; } -
felixhummel created this gist
Feb 23, 2016 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,8 @@ server { listen 80 default_server; location / { default_type text/plain; return 418 "418 I'm a teapot\n"; } }