Log requests
This commit is contained in:
parent
dffa303558
commit
15f167e32a
|
@ -46,15 +46,19 @@ 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;
|
||||||
|
'';
|
||||||
clientMaxBodySize = "1024M";
|
clientMaxBodySize = "1024M";
|
||||||
virtualHosts = genAttrs cfg.hostnames (hostname: {
|
virtualHosts = genAttrs cfg.hostnames (hostname: {
|
||||||
enableACME = false;
|
enableACME = false;
|
||||||
forceSSL = false;
|
forceSSL = false;
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://127.0.0.1:${toString cfg.port}";
|
proxyPass = "http://127.0.0.1:${toString cfg.port}";
|
||||||
extraConfig = ''
|
|
||||||
client_max_body_size 1024M;
|
|
||||||
'';
|
|
||||||
recommendedProxySettings = true;
|
recommendedProxySettings = true;
|
||||||
proxyWebsockets = true;
|
proxyWebsockets = true;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue