From a49d50141900add680005010cab67ee6a79dc417 Mon Sep 17 00:00:00 2001 From: hackerESQ Date: Mon, 9 Sep 2024 15:12:51 -0500 Subject: [PATCH] allow any server name (including localhost) --- docker/nginx.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/nginx.conf b/docker/nginx.conf index cf0f1c5..5e22305 100644 --- a/docker/nginx.conf +++ b/docker/nginx.conf @@ -1,6 +1,6 @@ server { listen 80; - server_name localhost; + server_name _; root /var/www/app/public; index index.php index.html index.htm;