Mercurial > dive4elements > river
comparison doc/d4e-apache.conf @ 7812:195233a91e04
Added apache example config, updated install doku.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 07 Mar 2014 16:28:23 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
7811:63809d786058 | 7812:195233a91e04 |
---|---|
1 <VirtualHost *:8081> | |
2 ServerAdmin webmaster@localhost | |
3 | |
4 DocumentRoot /var/www | |
5 <Directory /> | |
6 Options FollowSymLinks | |
7 AllowOverride None | |
8 </Directory> | |
9 <Directory /var/www/> | |
10 Options Indexes FollowSymLinks MultiViews | |
11 AllowOverride None | |
12 Order allow,deny | |
13 allow from all | |
14 </Directory> | |
15 | |
16 ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ | |
17 <Directory "/usr/lib/cgi-bin"> | |
18 AllowOverride None | |
19 Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch | |
20 Order allow,deny | |
21 Allow from all | |
22 </Directory> | |
23 | |
24 ProxyPass /d4e-river ajp://localhost:8009/d4e-river | |
25 ProxyPassReverse /d4e-river ajp://localhost:8009/d4e-river | |
26 | |
27 ErrorLog /var/log/d4e-river/apache-error.log | |
28 | |
29 # Possible values include: debug, info, notice, warn, error, crit, | |
30 # alert, emerg. | |
31 LogLevel warn | |
32 | |
33 CustomLog /var/log/d4e-river/apache-access.log combined | |
34 </VirtualHost> |