nginx.conf 320 B

12345678910111213141516171819
  1. upstream smarthubs {
  2. server web:5000;
  3. }
  4. server {
  5. # max upload size
  6. client_max_body_size 10M;
  7. listen 80;
  8. location / {
  9. proxy_pass http://smarthubs;
  10. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  11. proxy_set_header Host $host;
  12. proxy_redirect off;
  13. }
  14. }