Fix server block syntax in Nginx configuration in update.sh

This commit is contained in:
2026-04-26 16:34:42 +02:00
parent 05d6d299da
commit 15d9eba987
+4 -1
View File
@@ -115,7 +115,10 @@ ensure_nginx_config_mount_source() {
if [ ! -f "$config_path" ]; then
cat > "$config_path" <<'EOF'
server {
fi
}
server() {
listen 80;
server_name _;
return 301 https://$host$request_uri;