Skip to content

Commit

Permalink
Merge pull request #132 from Apes2getherStrong/nginx-fix
Browse files Browse the repository at this point in the history
FIX: http to https
  • Loading branch information
Kondziow authored Sep 29, 2024
2 parents 7d70979 + 4cd970b commit 27d4eaf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/etc/nginx/default.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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 / {
Expand Down

0 comments on commit 27d4eaf

Please sign in to comment.