From d16947c0892ecad2dd9123ce0660d6379bd87273 Mon Sep 17 00:00:00 2001 From: happybell80 Date: Fri, 18 Jul 2025 00:09:09 +0900 Subject: [PATCH] fix: change nginx root to /var/www/html/frontend-customer - Change from /home/admin/frontend-customer/dist to /var/www/html/frontend-customer - Allows www-data user to access files without permission issues --- server-nginx-default | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server-nginx-default b/server-nginx-default index 348e776..c7f7599 100644 --- a/server-nginx-default +++ b/server-nginx-default @@ -38,7 +38,7 @@ server { # # include snippets/snakeoil.conf; - root /home/admin/frontend-customer/dist; + root /var/www/html/frontend-customer; # 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 /home/admin/frontend-customer/dist; + root /var/www/html/frontend-customer; # Add index.php to the list if you are using PHP index index.html index.htm index.nginx-debian.html;