mirror of
https://github.com/linuxserver/reverse-proxy-confs.git
synced 2025-07-07 05:21:31 -07:00
Privatebin needs to use http for upstream (#662)
* privatebin: needs to use http * privatebin: update date
This commit is contained in:
parent
6b2e31a42b
commit
945d60c344
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
||||||
## Version 2023/05/31
|
## Version 2024/03/28
|
||||||
# make sure that your privatebin container is named privatebin
|
# make sure that your privatebin container is named privatebin
|
||||||
# make sure that your dns has a cname set for privatebin
|
# make sure that your dns has a cname set for privatebin
|
||||||
|
|
||||||
|
@ -39,7 +39,7 @@ server {
|
||||||
include /config/nginx/resolver.conf;
|
include /config/nginx/resolver.conf;
|
||||||
set $upstream_app privatebin;
|
set $upstream_app privatebin;
|
||||||
set $upstream_port 8080;
|
set $upstream_port 8080;
|
||||||
set $upstream_proto https;
|
set $upstream_proto http;
|
||||||
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue