32 lines
730 B
Plaintext
32 lines
730 B
Plaintext
Listen 8081
|
|
|
|
<VirtualHost *:8081>
|
|
DocumentRoot /var/www/passbolt
|
|
RewriteEngine On
|
|
|
|
# Other directives here
|
|
<Directory /var/www/passbolt>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
</VirtualHost>
|
|
|
|
<VirtualHost *:443>
|
|
DocumentRoot /var/www/passbolt
|
|
RewriteEngine On
|
|
SSLEngine On
|
|
SSLCertificateFile /etc/apache2/ssl/apache.crt
|
|
SSLCertificateKeyFile /etc/apache2/ssl/apache.key
|
|
SSLVerifyClient None
|
|
|
|
# Other directives here
|
|
<Directory /var/www/passbolt>
|
|
Options Indexes FollowSymLinks
|
|
AllowOverride All
|
|
Order allow,deny
|
|
allow from all
|
|
</Directory>
|
|
</VirtualHost>
|