mirror of
https://git.freebsd.org/ports.git
synced 2025-05-12 23:31:50 -04:00
* This (experimental) module was part of www/apache24 up to 2.4.62 Differential Revision: https://reviews.freebsd.org/D48514
21 lines
452 B
Text
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
|