Hi,
I tried to make FirePlay available behind a reverse proxy. So I installed nginx on my slug with the following proxy settings in nginx.conf:
server {
listen 81;
server_name slugtunes.xxxxxx.homelinux.org;
location / {
proxy_pass http://127.0.0.1:3689/;
}
When I called
slugtunes.xxxx.homelinux.org:81/FirePlay.html
after giving id and passwd FirePlay came up. But after playing about a second of a song, it stops.
It must be something with the nginx config, but I am not experienced with proxy configuration and nginx is from Russia, so there is not too much english or german documentation.
Any ideas?
Rigas