Ticket #2096: nginx-proxy_next_upstream-test.conf

File nginx-proxy_next_upstream-test.conf, 338 bytes (added by pszemus@…, 6 years ago)

Simple test nginx configuration

Line 
1events {}
2
3http {
4
5 upstream test_upstream {
6 server postman-echo.com;
7 server postman-echo.com down;
8 }
9
10 server {
11
12 proxy_next_upstream error timeout invalid_header http_500 http_502 http_503 http_504 http_403 http_404;
13
14 location / {
15 proxy_pass http://test_upstream;
16 }
17
18 }
19
20}