43 lines
1.5 KiB
Text
43 lines
1.5 KiB
Text
# {{ ansible_managed }}
|
|
|
|
##
|
|
## SSL Global Context
|
|
##
|
|
## All SSL configuration in this context applies both to
|
|
## the main server and all SSL-enabled virtual hosts.
|
|
##
|
|
|
|
# Inter-Process Session Cache:
|
|
# Configure the SSL Session Cache: First the mechanism
|
|
# to use and second the expiring timeout (in seconds).
|
|
SSLSessionCache shmcb:/run/httpd/sslcache(512000)
|
|
SSLSessionCacheTimeout 300
|
|
|
|
# Pseudo Random Number Generator (PRNG):
|
|
# Configure one or more sources to seed the PRNG of the
|
|
# SSL library. The seed data should be of good random quality.
|
|
# WARNING! On some platforms /dev/random blocks if not enough entropy
|
|
# is available. This means you then cannot use the /dev/random device
|
|
# because it would lead to very long connection times (as long as
|
|
# it requires to make more entropy available). But usually those
|
|
# platforms additionally provide a /dev/urandom device which doesn't
|
|
# block. So, if available, use this one instead. Read the mod_ssl User
|
|
# Manual for more details.
|
|
SSLRandomSeed startup file:/dev/urandom 256
|
|
SSLRandomSeed connect builtin
|
|
|
|
#
|
|
# Use "SSLCryptoDevice" to enable any supported hardware
|
|
# accelerators. Use "openssl engine -v" to list supported
|
|
# engine names. NOTE: If you enable an accelerator and the
|
|
# server does not start, consult the error logs and ensure
|
|
# your accelerator is functioning properly.
|
|
#
|
|
SSLCryptoDevice builtin
|
|
#SSLCryptoDevice ubsec
|
|
|
|
SSLProtocol {{ reverse_proxy_SSLProtocol }}
|
|
SSLHonorCipherOrder on
|
|
SSLCompression Off
|
|
SSLCipherSuite "{{ reverse_proxy_SSLCipherSuite }}"
|
|
|