From af9465c1272efcec80115030a5314dfe214747af Mon Sep 17 00:00:00 2001 From: Sirttas Date: Thu, 16 Nov 2023 20:42:34 +0100 Subject: [PATCH] fix nginix --- nginx.conf.template | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/nginx.conf.template b/nginx.conf.template index 654b746..41ff1fc 100644 --- a/nginx.conf.template +++ b/nginx.conf.template @@ -28,19 +28,19 @@ server { proxy_set_header X-Forwarded-Proto https; } location /evepraisal/ { - proxy_pass https://${FUZZWORK_URL}/; + proxy_pass https://${EVEPRAISAL_URL}/; proxy_http_version 1.1; rewrite /evepraisal/(.*) /$1 break; proxy_ssl_server_name on; - proxy_set_header Host "${FUZZWORK_URL}"; + proxy_set_header Host "${EVEPRAISAL_URL}"; proxy_set_header X-Forwarded-Proto https; } location /fuzzwork/ { - proxy_pass https://${EVEPRAISAL_URL}/; + proxy_pass https://${FUZZWORK_URL}/; proxy_http_version 1.1; rewrite /fuzzwork/(.*) /$1 break; proxy_ssl_server_name on; - proxy_set_header Host "${EVEPRAISAL_URL}"; + proxy_set_header Host "${FUZZWORK_URL}"; proxy_set_header X-Forwarded-Proto https; } location /esi/ {