diff --git a/bundles/nginx/files/nginx.conf b/bundles/nginx/files/nginx.conf index 7f7bd77..b020d3c 100644 --- a/bundles/nginx/files/nginx.conf +++ b/bundles/nginx/files/nginx.conf @@ -26,7 +26,7 @@ http { send_timeout 10; access_log off; - error_log off; + error_log /dev/null; client_body_buffer_size 16K; client_header_buffer_size 4k; diff --git a/nodes/home/nas.py b/nodes/home/nas.py index b98fb7d..fbc7bbd 100644 --- a/nodes/home/nas.py +++ b/nodes/home/nas.py @@ -168,6 +168,7 @@ nodes['home.nas'] = { 'nginx': { 'vhosts': { 'jellyfin': { + 'create_logs': True, 'domain': 'jellyfin.home.kunbox.net', 'ssl': '_.home.kunbox.net', }, diff --git a/nodes/home/paperless.py b/nodes/home/paperless.py index 654a79e..caffb73 100644 --- a/nodes/home/paperless.py +++ b/nodes/home/paperless.py @@ -42,6 +42,7 @@ nodes['home.paperless'] = { 'nginx': { 'vhosts': { 'paperless': { + 'create_logs': True, 'ssl': '_.home.kunbox.net', }, },