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.

nginx.conf 502B

1234567891011121314151617181920212223242526
  1. events {
  2. worker_connections 1024;
  3. }
  4. http {
  5. # In case of big files
  6. client_max_body_size 200M;
  7. server {
  8. listen 8080;
  9. location / {
  10. proxy_pass http://transmission:9091;
  11. proxy_set_header Host $http_host;
  12. proxy_set_header X-Real-IP $remote_addr;
  13. proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  14. proxy_set_header X-Forwarded-Proto $scheme;
  15. # HTTP 1.1 support
  16. proxy_http_version 1.1;
  17. proxy_set_header Connection "";
  18. }
  19. }
  20. }