From 06e8185a06a3d07ea7a02a732454c737d6ba78f9 Mon Sep 17 00:00:00 2001 From: david_bai Date: Thu, 26 Jun 2025 21:18:10 +0800 Subject: [PATCH] fix naming bug --- backend/docker/Nginx/configure.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/docker/Nginx/configure.sh b/backend/docker/Nginx/configure.sh index 59ea4b0..07c3913 100644 --- a/backend/docker/Nginx/configure.sh +++ b/backend/docker/Nginx/configure.sh @@ -90,7 +90,7 @@ configure_nginx() { done < "$NGINX_TEMPLATE" > "$TEMP_NGINX" # Copy the configuration file to the target location - cp "$TEMP_NGINX" /etc/nginx/sites-available/ + cp "$TEMP_NGINX" /etc/nginx/sites-available/default # cp "$TEMP_NGINX" default_temp rm "$TEMP_NGINX" }