Log requests

This commit is contained in:
niten 2024-05-23 14:40:04 -07:00
parent dffa303558
commit 15f167e32a
1 changed files with 7 additions and 3 deletions

View File

@ -46,15 +46,19 @@ 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;
'';
clientMaxBodySize = "1024M";
virtualHosts = genAttrs cfg.hostnames (hostname: {
enableACME = false;
forceSSL = false;
locations."/" = {
proxyPass = "http://127.0.0.1:${toString cfg.port}";
extraConfig = ''
client_max_body_size 1024M;
'';
recommendedProxySettings = true;
proxyWebsockets = true;
};