Search found 1 match

by mpox
Thu May 27, 2010 12:49 am
Forum: Web Interface
Topic: HTTP error 405 when using the webinterface through nginx
Replies: 1
Views: 6349

Re: HTTP error 405 when using the webinterface through nginx

Adding the following to my /etc/nginx/sites-available/default works for me


location /transmission {
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_pass http://127.0.0.1:9091/transmission;
proxy ...