blob: a71cf1674145d81fbb8a45efeb1b35485b6277a8 (
plain)
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
|
Alias /davical "/srv/http/davical/htdocs"
<Directory "/srv/http/davical/htdocs/">
DirectoryIndex index.php index.html
AcceptPathInfo On
AllowOverride None
Order allow,deny
Allow from all
php_value open_basedir /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/awl/inc:/etc/davical
php_value include_path /srv/http/davical/inc:/usr/share/awl/inc
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value error_reporting "E_ALL & ~E_NOTICE"
php_value default_charset "utf-8"
php_value magic_quotes_runtime 0
</Directory>
<VirtualHost *:80>
DirectoryIndex index.php index.html
ServerAdmin webmaster@example.com
DocumentRoot "/srv/http/davical/htdocs"
Alias /images/ /srv/http/davical/htdocs/images/
AcceptPathInfo On
<Directory /srv/http/davical/htdocs/>
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ServerName localhost
ServerAlias alias.localhost
php_value open_basedir /srv/http/:/home/:/tmp/:/usr/share/pear/:/usr/share/awl/inc:/etc/davical
php_value include_path /srv/http/davical/inc:/usr/share/awl/inc
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value error_reporting "E_ALL & ~E_NOTICE"
php_value default_charset "utf-8"
php_value magic_quotes_runtime 0
ErrorLog "/var/log/httpd/httpd-davical-error_log"
CustomLog "/var/log/httpd/httpd-davical-access_log" common
</VirtualHost>
|