forked from docker-flow/docker-flow-proxy
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
164 additions
and
46 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 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
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 |
---|---|---|
@@ -1,23 +1,2 @@ | ||
# TODO | ||
|
||
## Logging | ||
|
||
[ ] Implement | ||
[ ] Add integration tests | ||
[ ] Test manually | ||
[ ] Write an article | ||
[ ] Update README | ||
[ ] Create a release | ||
|
||
## Template | ||
|
||
[ ] Implement | ||
[ ] Add integration tests | ||
[ ] Test manually | ||
[ ] Write an article | ||
[ ] Update README | ||
[ ] Create a release | ||
|
||
## Videos | ||
|
||
[ ] Wilde: https://www.youtube.com/watch?v=oP0_H_UkkGA |
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,12 @@ | ||
HTTP/1.0 400 Bad Request | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>400 Bad Request</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 403 Forbidden | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>403 Forbidden</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 405 Method Not Allowed | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>405 Method Not Allowed</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 408 Request Timeout | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>408 Request Timeout</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 429 Too Many Requests | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>429 Too Many Requests</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 500 Internal Server Error | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>500 Internal Server Error</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 502 Bad Gateway | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>502 Bad Gateway</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 503 Service Unavailable | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>503 Service Unavailable</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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,12 @@ | ||
HTTP/1.0 504 Gateway Timeout | ||
Cache-Control: no-cache | ||
Connection: close | ||
Content-Type: text/html | ||
|
||
<html> | ||
<body> | ||
<h3>Docker Flow: Proxy</h3> | ||
<h1>504 Gateway Timeout</h1> | ||
No server is available to handle this request. | ||
</body> | ||
</html> |
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
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