From 576dd5d424e93e01d1fa429f3ace854fda09ded2 Mon Sep 17 00:00:00 2001 From: happybell80 Date: Fri, 18 Jul 2025 00:30:28 +0900 Subject: [PATCH] fix: change nginx root back to direct path - Change from /var/www/html/frontend-customer to /home/admin/frontend-customer/dist - Direct connection without symbolic link (permissions already fixed) - Simpler and more efficient --- server-nginx-default | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-nginx-default b/server-nginx-default index c7f7599..348e776 100644 --- a/server-nginx-default +++ b/server-nginx-default @@ -38,7 +38,7 @@ server { # # include snippets/snakeoil.conf; - root /var/www/html/frontend-customer; + root /home/admin/frontend-customer/dist; # Add index.php to the list if you are using PHP index index.html index.htm index.nginx-debian.html; @@ -113,7 +113,7 @@ server { # # include snippets/snakeoil.conf; - root /var/www/html/frontend-customer; + root /home/admin/frontend-customer/dist; # Add index.php to the list if you are using PHP index index.html index.htm index.nginx-debian.html;