Merge pull request #3230 from robberer/module/httpd

httpd: disable logging when logFormat = "none"
This commit is contained in:
Michael Raskin 2014-08-23 11:37:48 +04:00
commit c0da615c02

View file

@ -130,7 +130,7 @@ let
'';
loggingConf = ''
loggingConf = (if mainCfg.logFormat != "none" then ''
ErrorLog ${mainCfg.logDir}/error_log
LogLevel notice
@ -141,7 +141,9 @@ let
LogFormat "%{User-agent}i" agent
CustomLog ${mainCfg.logDir}/access_log ${mainCfg.logFormat}
'';
'' else ''
ErrorLog /dev/null
'');
browserHacks = ''