ports/www/mod_tls/files/001-mod_tls.conf.in
Bernard Spil e4321009ba security/mod_tls: Add new Apache httpd TLS module
* This (experimental) module was part of www/apache24 up to 2.4.62

Differential Revision:	https://reviews.freebsd.org/D48514
2025-01-25 13:06:17 +01:00

21 lines
452 B
Text

# To enable, uncomment the LoadModule line
# LoadModule tls_module %%APACHE_MODDIR%%/mod_tls.so
<IfModule tls_module>
TLSEngine 443
TLSStrictSNI on
</IfModule>
# Switching from mod_ssl to mod_tls
#
# Replace the mod_ssl config
#
# SSLEngine on
# SSLCertificateFile file_with_certificate.pem
# SSLCertificateKeyFile file_with_key.pem
#
# with
#
# TLSEngine 443
# TLSCertificate file_with_certificate.pem file_with_key.pem