Compare commits

...

1 Commits

Author SHA1 Message Date
Aiirondev_dev 15d9eba987 Fix server block syntax in Nginx configuration in update.sh 2026-04-26 16:34:42 +02:00
+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;