12345678910111213141516171819 |
- upstream smarthubs {
- server web:5000;
- }
- server {
- # max upload size
- client_max_body_size 10M;
- listen 80;
- location / {
- proxy_pass http://smarthubs;
- proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
- proxy_set_header Host $host;
- proxy_redirect off;
- }
- }
|