From 120b72ca0eb5c91dbe5cfc032b4fbe567d8cc51f Mon Sep 17 00:00:00 2001 From: Joby Elliott Date: Mon, 21 Oct 2024 21:38:25 -0500 Subject: [PATCH] bug fix --- site-config.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site-config.conf b/site-config.conf index 42c28de..0e86f32 100644 --- a/site-config.conf +++ b/site-config.conf @@ -20,10 +20,10 @@ server { # Determine the subdomain and set the root accordingly # subdomains are the default, so that we get 404s for nonexistant subdomains set $subdomain ''; - set $full_root = $MAIN_WEB_ROOT/_main/www; + set $full_root $MAIN_WEB_ROOT/_main/www; if ($host ~* ^([^.]+)\.$DOMAIN$) { set $subdomain $1; - set $full_root = $MAIN_WEB_ROOT/subdomains/$subdomain/www; + set $full_root $MAIN_WEB_ROOT/subdomains/$subdomain/www; } root $full_root;