mirror of https://github.com/zulip/zulip.git
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
<VirtualHost *:80>
|
|
ServerAdmin webmaster@localhost
|
|
ServerName dev.humbughq.com
|
|
|
|
DocumentRoot /var/www
|
|
<Directory *>
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
LogLevel warn
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:443>
|
|
ServerAdmin webmaster@localhost
|
|
ServerName dev.humbughq.com
|
|
|
|
SSLEngine on
|
|
SSLCertificateFile /etc/apache2/certs/humbug-self-signed.crt
|
|
SSLCertificateKeyFile /etc/apache2/certs/humbug-self-signed.key
|
|
|
|
DocumentRoot /var/www
|
|
<Directory *>
|
|
Options FollowSymLinks
|
|
AllowOverride None
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
|
|
ErrorLog ${APACHE_LOG_DIR}/error.log
|
|
LogLevel warn
|
|
CustomLog ${APACHE_LOG_DIR}/access.log combined
|
|
</VirtualHost>
|