From 945d60c3448869f8e321098468308da6f0d8a40a Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Thu, 28 Mar 2024 13:39:32 -0400 Subject: [PATCH] Privatebin needs to use http for upstream (#662) * privatebin: needs to use http * privatebin: update date --- privatebin.subdomain.conf.sample | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/privatebin.subdomain.conf.sample b/privatebin.subdomain.conf.sample index 9279ddd..5838c88 100644 --- a/privatebin.subdomain.conf.sample +++ b/privatebin.subdomain.conf.sample @@ -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; }