From 0852a029fa130121b918ca82c5d90e218157bb4c Mon Sep 17 00:00:00 2001 From: Dimitrios Giannopoulos <dimit.giannopoulos@upnet.gr> Date: Tue, 30 Apr 2024 11:30:25 +0000 Subject: [PATCH] feat: added static server_name --- nginx-custom.conf | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nginx-custom.conf b/nginx-custom.conf index 83307e4..74101ac 100644 --- a/nginx-custom.conf +++ b/nginx-custom.conf @@ -1,4 +1,3 @@ - # Expires map map $sent_http_content_type $expires { default off; @@ -13,7 +12,7 @@ listen 80; include /etc/nginx/mime.types; - server_name {{ .Values.rooturl }}; + server_name tmf_web; location / { root /usr/share/nginx/html/services; index index.html index.htm; -- GitLab