Jump to content

Change port 8096 by a subdirectory


jins.ssu

Recommended Posts

thefirstofthe300

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.

Link to comment
Share on other sites

  • 8 months later...
reederda

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?

Link to comment
Share on other sites

ubertoast

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 by ubertoast
Link to comment
Share on other sites

  • 8 months later...

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.


Link to comment
Share on other sites

 

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...