12345678910111213141516171819202122232425262728293031323334 |
- http {
- set_real_ip_from 0.0.0.0/0;
- real_ip_header X-Forwarded-For;
- server {
- listen 80;
- listen [::]:80;
- server_name localhost;
- location / {
- root /usr/share/nginx/html;
- index index.html index.htm;
- }
- error_page 500 502 503 504 /50x.html;
- location = /50x.html {
- root /usr/share/nginx/html;
- }
-
- location /pay/ {
-
-
-
-
- proxy_set_header X-Real-IP $remote_addr;
- proxy_set_header X-Forwarded-For $remote_addr;
-
- proxy_pass http://pay:8888/pay/;
- }
- }
- }
|