force http host in nginx

This commit is contained in:
meeb 2020-12-13 18:02:34 +11:00
parent 750f1529d1
commit 39bdd5afb9
2 changed files with 2 additions and 3 deletions

View File

@ -9,7 +9,7 @@ on:
- main - main
jobs: jobs:
build: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:

View File

@ -70,7 +70,7 @@ http {
# Authentication and proxying # Authentication and proxying
location / { location / {
proxy_pass http://127.0.0.1:8080; proxy_pass http://127.0.0.1:8080;
proxy_set_header Host $http_host; proxy_set_header Host localhost;
proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
@ -81,5 +81,4 @@ http {
} }
} }