Files
docker-apache-php/conf/my-httpd-vhosts.conf
T
2025-02-22 12:19:31 +01:00

11 lines
253 B
Plaintext

<VirtualHost *:443>
DocumentRoot "/var/www/html"
ServerName localhost
SSLEngine on
SSLCertificateFile "/etc/ssl/certs/localhost.crt"
SSLCertificateKeyFile "/etc/ssl/private/localhost.key"
# Other directives here
</VirtualHost>