1 |
7888
|
aaronmk
|
<VirtualHost *:80>
|
2 |
7983
|
aaronmk
|
ServerRoot /home/bien/svn/web
|
3 |
7888
|
aaronmk
|
ServerAdmin aaronmk@nceas.ucsb.edu
|
4 |
7983
|
aaronmk
|
|
5 |
7986
|
aaronmk
|
RewriteEngine on
|
6 |
8059
|
aaronmk
|
RewriteMap tolower int:tolower
|
7 |
7985
|
aaronmk
|
RewriteMap subdomain2path prg:subdomain2path
|
8 |
|
|
|
9 |
8368
|
aaronmk
|
DocumentRoot .
|
10 |
8398
|
aaronmk
|
<Directory .>
|
11 |
8401
|
aaronmk
|
Require all granted
|
12 |
7888
|
aaronmk
|
AllowOverride all
|
13 |
|
|
</Directory>
|
14 |
7983
|
aaronmk
|
|
15 |
|
|
ErrorLog logs/error_log
|
16 |
|
|
CustomLog logs/access_log combined
|
17 |
7888
|
aaronmk
|
</VirtualHost>
|
18 |
8764
|
aaronmk
|
|
19 |
|
|
<VirtualHost *:443>
|
20 |
|
|
SSLEngine on
|
21 |
|
|
SSLCertificateFile /etc/ssl/local/apache.pem
|
22 |
|
|
SSLCertificateKeyFile /etc/ssl/local/apache.key
|
23 |
|
|
|
24 |
|
|
ServerRoot /home/bien/svn/web
|
25 |
|
|
ServerAdmin aaronmk@nceas.ucsb.edu
|
26 |
|
|
|
27 |
|
|
RewriteEngine on
|
28 |
|
|
RewriteMap tolower int:tolower
|
29 |
|
|
RewriteMap subdomain2path prg:subdomain2path
|
30 |
|
|
|
31 |
|
|
DocumentRoot .
|
32 |
|
|
<Directory .>
|
33 |
|
|
Require all granted
|
34 |
|
|
AllowOverride all
|
35 |
|
|
</Directory>
|
36 |
|
|
|
37 |
|
|
ErrorLog logs/error_log
|
38 |
|
|
CustomLog logs/access_log combined
|
39 |
|
|
</VirtualHost>
|