Privatebin needs to use http for upstream (#662)

* privatebin: needs to use http

* privatebin: update date
This commit is contained in:
aptalca 2024-03-28 13:39:32 -04:00 committed by GitHub
parent 6b2e31a42b
commit 945d60c344
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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 dns has a cname set for privatebin
@ -39,7 +39,7 @@ server {
include /config/nginx/resolver.conf;
set $upstream_app privatebin;
set $upstream_port 8080;
set $upstream_proto https;
set $upstream_proto http;
proxy_pass $upstream_proto://$upstream_app:$upstream_port;
}