mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-10-06 21:46:03 +08:00
disable trace method and improve apache ssl conf
Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
parent
4a9c344473
commit
0596c60584
2 changed files with 9 additions and 0 deletions
|
@ -49,4 +49,7 @@ Listen 8000
|
||||||
|
|
||||||
# See https://httpd.apache.org/docs/current/mod/mod_proxy.html#proxytimeout
|
# See https://httpd.apache.org/docs/current/mod/mod_proxy.html#proxytimeout
|
||||||
ProxyTimeout ${APACHE_MAX_TIME}
|
ProxyTimeout ${APACHE_MAX_TIME}
|
||||||
|
|
||||||
|
# See https://httpd.apache.org/docs/trunk/mod/core.html#traceenable
|
||||||
|
TraceEnable Off
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
|
|
@ -49,8 +49,14 @@ Listen 8080
|
||||||
SSLCertificateFile /etc/apache2/certs/ssl.crt
|
SSLCertificateFile /etc/apache2/certs/ssl.crt
|
||||||
SSLEngine on
|
SSLEngine on
|
||||||
SSLProtocol -all +TLSv1.2 +TLSv1.3
|
SSLProtocol -all +TLSv1.2 +TLSv1.3
|
||||||
|
SSLCipherSuite 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:DHE-RSA-CHACHA20-POLY1305
|
||||||
|
SSLHonorCipherOrder off
|
||||||
|
SSLSessionTickets off
|
||||||
</VirtualHost>
|
</VirtualHost>
|
||||||
|
|
||||||
# Increase timeout in case e.g. the initial download takes a long time
|
# Increase timeout in case e.g. the initial download takes a long time
|
||||||
Timeout 7200
|
Timeout 7200
|
||||||
ProxyTimeout 7200
|
ProxyTimeout 7200
|
||||||
|
|
||||||
|
# See https://httpd.apache.org/docs/trunk/mod/core.html#traceenable
|
||||||
|
TraceEnable Off
|
||||||
|
|
Loading…
Add table
Reference in a new issue