From 2a1e0ab6786bcd8a1de13dded7f5cb5bd233f357 Mon Sep 17 00:00:00 2001 From: tremor021 Date: Mon, 30 Mar 2026 12:09:11 +0200 Subject: [PATCH] fireshare: fix sed --- install/fireshare-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/fireshare-install.sh b/install/fireshare-install.sh index c6de508b..f59a35eb 100644 --- a/install/fireshare-install.sh +++ b/install/fireshare-install.sh @@ -138,7 +138,7 @@ $STD npm install $STD npm run build systemctl stop nginx cp /opt/fireshare/app/nginx/prod.conf /etc/nginx/nginx.conf -sed -i 's|root /processed/|root /opt/fireshare-processed|g' /etc/nginx/nginx.conf +sed -i 's|root /processed/|root /opt/fireshare-processed/|g' /etc/nginx/nginx.conf sed -i 's/^user[[:space:]]\+nginx;/user root;/' /etc/nginx/nginx.conf sed -i 's|root[[:space:]]\+/app/build;|root /opt/fireshare/app/client/build;|' /etc/nginx/nginx.conf systemctl start nginx