forked from javanile/vtiger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
000-default.conf
34 lines (31 loc) · 934 Bytes
/
000-default.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<VirtualHost *:80>
ServerName localhost
ServerAdmin info@javanile.org
DocumentRoot /var/www/html/
ErrorLog /var/lib/vtiger/logs/apache.log
CustomLog /var/lib/vtiger/logs/access.log combined
<Directory /var/www/html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
</VirtualHost>
<VirtualHost *:443>
ServerName localhost
ServerAdmin info@javanile.org
DocumentRoot /var/www/html/
ErrorLog /var/lib/vtiger/logs/apache.log
CustomLog /var/lib/vtiger/logs/access.log combined
SSLEngine on
SSLCertificateFile "/etc/apache2/ssl/vtiger-ssl.crt"
SSLCertificateKeyFile "/etc/apache2/ssl/vtiger-ssl.pem"
<Directory /var/www/html/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
Require all granted
</Directory>
</VirtualHost>