You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
491 B

3 years ago
  1. server {
  2. listen 80;
  3. server_name example.com *.example.com;
  4. location / {
  5. proxy_pass http://127.0.0.1:5000;
  6. proxy_http_version 1.1;
  7. proxy_set_header Upgrade $http_upgrade;
  8. proxy_set_header Connection keep-alive;
  9. proxy_set_header Host $host;
  10. proxy_cache_bypass $http_upgrade;
  11. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  12. proxy_set_header X-Forwarded-Proto $scheme;
  13. }
  14. }