From 30e6314fe2a42b604bb975fcd06ec76d6bc3ce20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EC=9C=A0=EB=AF=B8=EB=9D=BC?= Date: Wed, 27 Nov 2024 17:56:30 +0900 Subject: [PATCH] fix: Update nginx server_name variable syntax --- nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nginx.conf b/nginx.conf index 2d5484f5..72be2d87 100644 --- a/nginx.conf +++ b/nginx.conf @@ -1,6 +1,6 @@ server { listen 80; - server_name ${SERVER_IP}; + server_name $SERVER_IP; gzip on; gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript;