jins.ssu 0 Posted June 7, 2015 Posted June 7, 2015 Hi, I would like to change the access door to a sub-directory. Example http://myaddress.com:8096 to http://myaddress.com/emby It's possible? thank you
thefirstofthe300 292 Posted June 7, 2015 Posted June 7, 2015 That should work. However, if you want to change to a custom web root other than /emby or /mediabrowser, I don't think that is possible yet.
reederda 0 Posted February 12, 2016 Posted February 12, 2016 That should work. However, if you want to change to a custom web root other than /emby or /mediabrowser, I don't think that is possible yet. I'm interested in doing this as well. What would the process be for changing it?
ubertoast 2 Posted February 12, 2016 Posted February 12, 2016 (edited) I use a reverse proxy to do this. It changes the "access door" as you say from http://supersite.com:8096 to http://supersite.com/emby. The config below is for nginx. location /emby { # Send traffic to the backend proxy_pass http://127.0.0.1:8096; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for; proxy_set_header Host $host; proxy_set_header X-Forwarded-Proto $remote_addr; proxy_set_header X-Forwarded-Protocol $scheme; proxy_redirect off; # Send websocket data to the backend aswell proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; } Edited February 12, 2016 by ubertoast
Kurosh 16 Posted October 19, 2016 Posted October 19, 2016 Hello, I'm using a reverse proxy, is there a way to make the webroot from "emby" to somehting else e.g. "1" I don't want any application information in the URL.
Luke 39646 Posted October 19, 2016 Posted October 19, 2016 Hello, I'm using a reverse proxy, is there a way to make the webroot from "emby" to somehting else e.g. "1" I don't want any application information in the URL. Hi, you can do /emby, or no sub directory at all, but you can't configure it to 1.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now