-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1080 from sozu-proxy/templating
Dynamic automatic answers system
- Loading branch information
Showing
29 changed files
with
1,807 additions
and
740 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 characters
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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
HTTP/1.1 404 Not Found | ||
Cache-Control: no-cache | ||
Connection: close | ||
Sozu-Id: %SOZU_ID | ||
|
||
<h1>My own 404 error page</h1> | ||
<p>Your request %SOZU_ID found no frontend and cannot be redirected.</p> |
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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
HTTP/1.1 503 Service Unavailable | ||
Cache-Control: no-cache | ||
Connection: close | ||
%Content-Length: %CONTENT_LENGTH | ||
Sozu-Id: %SOZU_ID | ||
|
||
<h1>MyCluster: 503 Service Unavailable</h1> | ||
<p>No server seems to be alive, could not redirect request %SOZU_ID.</p> | ||
<pre> | ||
%DETAILS | ||
<pre> |
Oops, something went wrong.