-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapache.conf
47 lines (36 loc) · 1.5 KB
/
apache.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
35
36
37
38
39
40
41
42
43
44
45
46
47
<VirtualHost *:80>
ServerAdmin webmaster@localhost
DocumentRoot /srv/www/alerts.skytruth.org/html
ServerName alerts.skytruth.org
<Directory /srv/www/alerts.skytruth.org/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ErrorLog /var/log/apache2/alerts.skytruth.org-error.log
CustomLog /var/log/apache2/alerts.skytruth.org-access.log combined
</VirtualHost>
<VirtualHost *:443>
ServerAdmin webmaster@localhost
DocumentRoot /srv/www/alerts.skytruth.org/html
ServerName alerts.skytruth.org
<Directory /srv/www/alerts.skytruth.org/html>
Options Indexes FollowSymLinks MultiViews
AllowOverride all
Order allow,deny
allow from all
</Directory>
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
ErrorLog /var/log/apache2/alerts.skytruth.org-error.log
CustomLog /var/log/apache2/alerts.skytruth.org-access.log combined
SSLEngine on
SSLCertificateFile /etc/apache2/ssl/alerts.skytruth.org.crt
SSLCertificateKeyFile /etc/apache2/ssl/alerts.skytruth.org.key
SSLCertificateChainFile /etc/apache2/ssl/gd_bundle-g2-g1.crt
</VirtualHost>