Add logging, and recommended nginx settings

This commit is contained in:
niten 2024-01-18 13:22:16 -08:00
parent ddbd5380c9
commit 7a071b4c8f
1 changed files with 11 additions and 0 deletions

View File

@ -139,6 +139,17 @@ in {
services.nginx = { services.nginx = {
enable = true; 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}" = { virtualHosts."${cfg.hostname}" = {
enableACME = true; enableACME = true;
forceSSL = true; forceSSL = true;