dave2wave commented on issue #684: URL: https://github.com/apache/tooling-trusted-releases/issues/684#issuecomment-4028079633
ChatGPT suggests more: ``` # Only allow modern TLS SSLProtocol -all +TLSv1.2 +TLSv1.3 SSLProxyProtocol -all +TLSv1.2 +TLSv1.3 # TLS 1.2 cipher suite SSLCipherSuite HIGH:!aNULL:!MD5:!3DES:!CAMELLIA SSLHonorCipherOrder on # TLS 1.3 ciphers (Apache ≥2.4.37) SSLOpenSSLConfCmd Ciphersuites TLS_AES_256_GCM_SHA384:TLS_CHACHA20_POLY1305_SHA256:TLS_AES_128_GCM_SHA256 # Disable compression (CRIME) SSLCompression off # Disable session tickets SSLSessionTickets off # OCSP stapling SSLUseStapling on SSLStaplingCache shmcb:/var/run/ocsp(128000) # HSTS (required for SSL Labs A+) Header always set Strict-Transport-Security "max-age=63072000; includeSubDomains; preload" Header always set X-Content-Type-Options "nosniff" Header always set X-Frame-Options "SAMEORIGIN" Header always set Referrer-Policy "strict-origin-when-cross-origin" ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
