mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
Merge pull request #3230 from robberer/module/httpd
httpd: disable logging when logFormat = "none"
This commit is contained in:
commit
c0da615c02
1 changed files with 4 additions and 2 deletions
|
@ -130,7 +130,7 @@ let
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
||||||
loggingConf = ''
|
loggingConf = (if mainCfg.logFormat != "none" then ''
|
||||||
ErrorLog ${mainCfg.logDir}/error_log
|
ErrorLog ${mainCfg.logDir}/error_log
|
||||||
|
|
||||||
LogLevel notice
|
LogLevel notice
|
||||||
|
@ -141,7 +141,9 @@ let
|
||||||
LogFormat "%{User-agent}i" agent
|
LogFormat "%{User-agent}i" agent
|
||||||
|
|
||||||
CustomLog ${mainCfg.logDir}/access_log ${mainCfg.logFormat}
|
CustomLog ${mainCfg.logDir}/access_log ${mainCfg.logFormat}
|
||||||
'';
|
'' else ''
|
||||||
|
ErrorLog /dev/null
|
||||||
|
'');
|
||||||
|
|
||||||
|
|
||||||
browserHacks = ''
|
browserHacks = ''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue