diff --git a/.github/workflows/testing.yaml b/.github/workflows/testing.yaml index d5d913a4..f10eba15 100644 --- a/.github/workflows/testing.yaml +++ b/.github/workflows/testing.yaml @@ -9,7 +9,7 @@ on: - main jobs: - build: + test: runs-on: ubuntu-latest strategy: matrix: diff --git a/config/root/etc/nginx/nginx.conf b/config/root/etc/nginx/nginx.conf index 0bb871c0..4cddd7b6 100644 --- a/config/root/etc/nginx/nginx.conf +++ b/config/root/etc/nginx/nginx.conf @@ -70,7 +70,7 @@ http { # Authentication and proxying location / { 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-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; @@ -81,5 +81,4 @@ http { } - }