roles/apache: Disable ssl_request_log
I am not sure the point of having both `ssl_request_log` and `ssl_access_log`. The former includes the TLS ciphers used in the connection, which is not particularly interesting information. To save space on the log volume of web servers using Apache, we should just stop creating this log file.jenkins-master
parent
d1cdc8bfc3
commit
b519f97f6a
|
@ -63,5 +63,5 @@ BrowserMatch "MSIE [2-5]" \
|
||||||
# Per-Server Logging:
|
# Per-Server Logging:
|
||||||
# The home of a custom SSL log file. Use this when you want a
|
# The home of a custom SSL log file. Use this when you want a
|
||||||
# compact non-error SSL logfile on a virtual host basis.
|
# compact non-error SSL logfile on a virtual host basis.
|
||||||
CustomLog logs/ssl_request_log \
|
#CustomLog logs/ssl_request_log \
|
||||||
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
|
# "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
|
||||||
|
|
Loading…
Reference in New Issue