mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-08-22 06:13:49 -07:00
Added Overseerr Sample Conf
This commit is contained in:
parent
6e172e2561
commit
353c87ff67
1 changed files with 23 additions and 0 deletions
23
overseerr.subdomain.conf.sample
Normal file
23
overseerr.subdomain.conf.sample
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
## Version 2020/12/18
|
||||||
|
# make sure that your dns has a cname set for overseerr and that your overseerr container is named overseerr
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 443 ssl http2;
|
||||||
|
listen [::]:443 ssl http2;
|
||||||
|
|
||||||
|
server_name overseerr.*;
|
||||||
|
|
||||||
|
include /config/nginx/ssl.conf;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
|
||||||
|
include /config/nginx/proxy.conf;
|
||||||
|
resolver 127.0.0.11 valid=30s;
|
||||||
|
set $upstream_app 192.168.178.100;
|
||||||
|
set $upstream_port 5055;
|
||||||
|
set $upstream_proto http;
|
||||||
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue