Compare commits

..

1 Commits

Author SHA1 Message Date
MickLesk
e9c0807151 fix(romm): remove nginx default.conf during installation
/etc/nginx/conf.d/default.conf was not removed, causing nginx to serve
the default welcome page instead of RomM because conf.d/ is loaded
before sites-enabled/.

Fixes #14736
2026-05-28 07:30:13 +02:00
2 changed files with 3 additions and 1 deletions

View File

@@ -48,7 +48,8 @@ if [[ "$install_server" =~ ^[Ss]$ ]]; then
else
msg_info "Installing FileFlows Node"
cd /opt/fileflows/Node
$STD dotnet FileFlows.Node.dll --server "http://localhost:19200" --systemd install --root true
$STD dotnet FileFlows.Node.dll
$STD dotnet FileFlows.Node.dll --systemd install --root true
systemctl enable -q --now fileflows-node
msg_ok "Installed FileFlows Node"
fi

View File

@@ -265,6 +265,7 @@ EOF
sed -i "s|alias /var/lib/romm/library/;|alias ${ROMM_BASE}/library/;|" /etc/nginx/sites-available/romm
rm -f /etc/nginx/sites-enabled/default
rm -f /etc/nginx/conf.d/default.conf
ln -sf /etc/nginx/sites-available/romm /etc/nginx/sites-enabled/romm
systemctl restart nginx
systemctl enable -q --now nginx