Ticket #2315: user-config.txt
| File user-config.txt, 525 bytes (added by , 4 years ago) |
|---|
| Line | |
|---|---|
| 1 | server { |
| 2 | listen 8080; |
| 3 | server_name <ROUTE-53-PUBLIC-DNS>; |
| 4 | |
| 5 | # Load configuration files for the default server block. |
| 6 | include /etc/nginx/default.d/*.conf; |
| 7 | |
| 8 | location /abc { |
| 9 | proxy_pass http://1234.web-svc.domain.com:80/abc; |
| 10 | proxy_http_version 1.1; |
| 11 | proxy_set_header Host $host; |
| 12 | proxy_set_header X-Real-IP $remote_addr; |
| 13 | proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; |
| 14 | } |
| 15 | } |
