Don't change the settings on the parent host.

This commit is contained in:
niten 2024-01-18 13:42:33 -08:00
parent 7a071b4c8f
commit 6eb614ec54
1 changed files with 11 additions and 11 deletions

View File

@ -124,6 +124,17 @@ in {
streamingProcesses = cfg.streaming-processes;
};
nginx = {
recommendedTlsSettings = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
commonHttpConfig = ''
log_format with_response_time '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" '
'"$request_time" "$upstream_response_time"';
access_log /var/log/nginx/access.log with_response_time;
'';
virtualHosts."${cfg.hostname}" = {
forceSSL = false;
enableACME = false;
@ -139,17 +150,6 @@ in {
services.nginx = {
enable = true;
commonHttpConfig = ''
log_format with_response_time '$remote_addr - $remote_user [$time_local] '
'"$request" $status $body_bytes_sent '
'"$http_referer" "$http_user_agent" '
'"$request_time" "$upstream_response_time"';
access_log /var/log/nginx/access.log with_response_time;
'';
recommendedTlsSettings = true;
recommendedGzipSettings = true;
recommendedOptimisation = true;
recommendedProxySettings = true;
virtualHosts."${cfg.hostname}" = {
enableACME = true;
forceSSL = true;