mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-12-02 04:33:09 +01:00
20 lines
655 B
Plaintext
20 lines
655 B
Plaintext
|
<IfModule mod_ssl.c>
|
||
|
<VirtualHost *:443>
|
||
|
DocumentRoot /usr/share/zabbix/
|
||
|
ServerName zabbix
|
||
|
DirectoryIndex index.php
|
||
|
AddType application/x-httpd-php .php .php3 .php4 .php5 .phtml
|
||
|
AddType application/x-httpd-php-source .phps
|
||
|
|
||
|
# Enable/Disable SSL for this virtual host.
|
||
|
SSLEngine on
|
||
|
|
||
|
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL
|
||
|
SSLProtocol all -SSLv2
|
||
|
|
||
|
SSLCertificateFile /etc/ssl/apache2/ssl.crt
|
||
|
SSLCertificateKeyFile /etc/ssl/apache2/ssl.key
|
||
|
# SSLCACertificatePath /etc/ssl/apache2/chain/
|
||
|
</VirtualHost>
|
||
|
</IfModule>
|