From 2ad3ecb88c73def870df5d1ca54d4cb776c10c8e Mon Sep 17 00:00:00 2001 From: Nathan Date: Tue, 28 Apr 2026 13:55:56 -0500 Subject: [PATCH] docker nginx --- modules/features/nginx.nix | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/modules/features/nginx.nix b/modules/features/nginx.nix index 42fbc06..fe91ced 100644 --- a/modules/features/nginx.nix +++ b/modules/features/nginx.nix @@ -7,10 +7,7 @@ environment.etc."nginx/conf".text = '' http { server { - root /www/data; - - location / { - } + root /var/www/data; } } ''; @@ -31,8 +28,8 @@ ]; volumes = [ - "/ssd1/esotericbytes-com/data:/www/data" - "/etc/nginx/conf:/etc/nginx/conf" + "/ssd1/esotericbytes-com/data:/var/www/data" + "/etc/nginx:/etc/nginx" ]; labels = {