From 4cd970b72e9a62053320133e8bcdd6b38f5b1091 Mon Sep 17 00:00:00 2001 From: Janek1010 Date: Sun, 29 Sep 2024 19:10:53 +0200 Subject: [PATCH] FIX: http to https --- docker/etc/nginx/default.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker/etc/nginx/default.conf b/docker/etc/nginx/default.conf index f16ca3e..96a9624 100644 --- a/docker/etc/nginx/default.conf +++ b/docker/etc/nginx/default.conf @@ -3,10 +3,11 @@ server { listen [::]:80 default_server; location /api { - proxy_pass http://way2go-api.popi.pl; + proxy_pass https://way2go-api.popi.pl; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Proto $scheme; + } location / {