Log requests
This commit is contained in:
parent
da28a1c26b
commit
c2370eddb1
|
@ -55,6 +55,13 @@ in {
|
|||
services.nginx = {
|
||||
enable = true;
|
||||
clientMaxBodySize = "1024M";
|
||||
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 = genAttrs cfg.hostnames (hostname: {
|
||||
enableACME = false;
|
||||
forceSSL = false;
|
||||
|
|
Loading…
Reference in New Issue