fix: change nginx root back to direct path
All checks were successful
Deploy Nginx Config to Ubuntu Server / deploy (push) Successful in 1s

- 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
This commit is contained in:
happybell80 2025-07-18 00:30:28 +09:00
parent d16947c089
commit 576dd5d424

View File

@ -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;