From 630c223b1912cccffd3f1fc438f2bda47bc753b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Fri, 31 Oct 2025 09:45:47 +0100 Subject: [PATCH] Update Nginx configuration to use port 6060 (#8780) --- install/booklore-install.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install/booklore-install.sh b/install/booklore-install.sh index 6f67537d2..e95067b72 100644 --- a/install/booklore-install.sh +++ b/install/booklore-install.sh @@ -77,7 +77,8 @@ msg_info "Configure Nginx" rm -rf /usr/share/nginx/html ln -s /opt/booklore/booklore-ui/dist/booklore/browser /usr/share/nginx/html cp /opt/booklore/nginx.conf /etc/nginx/nginx.conf -sed -i "s/listen \${BOOKLORE_PORT};/listen 6060;/" /etc/nginx/nginx.conf +sed -i 's/listen \${BOOKLORE_PORT};/listen 6060;/' /etc/nginx/nginx.conf +sed -i 's/listen \[::\]:${BOOKLORE_PORT};/listen [::]:6060;/' /etc/nginx/nginx.conf systemctl restart nginx msg_ok "Configured Nginx"