From d49259ff07099b00efa36e3a453dc84ff88eb3db Mon Sep 17 00:00:00 2001 From: CroneKorkN Date: Sun, 10 May 2026 19:59:17 +0200 Subject: [PATCH] nginx: move 80.conf to sites-available so it's actually included MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The bundle was shipping 80.conf (HTTP-to-HTTPS redirect + acme-challenge alias) to /etc/nginx/sites/80.conf, but nginx.conf only `include`s /etc/nginx/sites-enabled/* (which is a symlink to sites-available). The file was orphaned — no node had a working port-80 listener. Move the destination to /etc/nginx/sites-available/80.conf so the existing sites-enabled symlink picks it up. The /etc/nginx purge will clean up any stale /etc/nginx/sites/80.conf on existing hosts. --- bundles/nginx/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundles/nginx/items.py b/bundles/nginx/items.py index 7ce0fce..7cc018d 100644 --- a/bundles/nginx/items.py +++ b/bundles/nginx/items.py @@ -64,7 +64,7 @@ files = { 'svc_systemd:nginx:restart', }, }, - '/etc/nginx/sites/80.conf': { + '/etc/nginx/sites-available/80.conf': { 'triggers': { 'svc_systemd:nginx:restart', },