i installated subsonic on raspberry pi with nginx. I have an error 404 when i'm going on http://my-rpi-p:4040
This is what i have in my file /etc/nginx/sites-enabled/
- Code: Select all
server {
listen 4040;
server_name subsonic;
location / {
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
subsonic is in /var/subsonic instead of /var/www/ for others websites on my rpi.
thx for helping me.
PS : sry for my bad inglish
