fix(tubearchivist): restart nginx after writing config

Debian auto-starts nginx on install with default config (port 80).
'enable --now' is a no-op if already running. Use explicit restart
to pick up our port 8000 config.
This commit is contained in:
CanbiZ (MickLesk)
2026-03-25 17:08:56 +01:00
parent 6983456e68
commit 864761104c

View File

@@ -180,7 +180,8 @@ server {
}
}
EOF
systemctl enable -q --now nginx
systemctl enable -q nginx
systemctl restart nginx
msg_ok "Configured Nginx"
msg_info "Creating Services"