SplitHTTP: Add suggestion to disable nginx access logs

This commit is contained in:
mmmray 2024-08-31 11:58:31 +02:00
parent 129be747c3
commit ca705fbd0b

View file

@ -9,6 +9,12 @@ server {
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
# splithttp produces very noisy access logs, as it sends many HTTP
# requests and uses querystrings for padding. It is recommended to turn
# them off after setup, or use custom log formats to limit the amount
# of information.
# access_log off;
location /split {
proxy_pass http://127.0.0.1:1234;
proxy_http_version 1.1;