From 635dca16b9c0b2c4cb9f0af8d588654b0e0b5734 Mon Sep 17 00:00:00 2001 From: Adam French Date: Thu, 20 Nov 2025 20:43:13 +0000 Subject: [PATCH] reshuffle, not a big deal --- nginx/nginx.conf.template | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/nginx/nginx.conf.template b/nginx/nginx.conf.template index dc03588..cd107aa 100644 --- a/nginx/nginx.conf.template +++ b/nginx/nginx.conf.template @@ -28,6 +28,7 @@ http { server { listen 443 ssl; http2 on; + server_name adam-french.co.uk www.adam-french.co.uk; root /etc/nginx/html; index index.html; @@ -35,9 +36,6 @@ http { ssl_certificate /etc/letsencrypt/live/adam-french.co.uk/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/adam-french.co.uk/privkey.pem; - server_name adam-french.co.uk; - - # Serve your HTML site location / { try_files $uri $uri/ =404; }