mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-21 13:53:53 -07:00
Add ipv6 support
This commit is contained in:
parent
b1966bdbfd
commit
4ef328bf68
38 changed files with 69 additions and 31 deletions
|
@ -1,4 +1,4 @@
|
|||
# make sure that your dns has a cname set for emby, if emby is running in bridge mode, the below config should work as is, although,
|
||||
# make sure that your dns has a cname set for emby, if emby is running in bridge mode, the below config should work as is, although,
|
||||
# the container name is expected to be "emby", if not, replace the line "set $upstream_emby emby;" with "set $upstream_emby <containername>;"
|
||||
# for host mode, replace the line "proxy_pass http://$upstream_emby:8096;" with "proxy_pass http://HOSTIP:8096;" HOSTIP being the IP address of emby
|
||||
# in emby settings, under "Advanced" change the public https port to 443, leave the local ports as is, set the "external domain" to your url,
|
||||
|
@ -6,6 +6,7 @@
|
|||
|
||||
server {
|
||||
listen 443 ssl;
|
||||
listen [::]:443 ssl;
|
||||
|
||||
server_name emby.*;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue