mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-02-13 03:23:34 +00:00
21 lines
513 B
Plaintext
21 lines
513 B
Plaintext
# DAViCal Calendar Server
|
|
|
|
Alias /davical /usr/share/davical/htdocs
|
|
|
|
<Directory /usr/share/davical/htdocs>
|
|
DirectoryIndex index.php index.html
|
|
AllowOverride None
|
|
# for Apache from 2.4 use
|
|
Require all granted
|
|
# for Apache before 2.4 use
|
|
#Order allow,deny
|
|
#Allow from all
|
|
AcceptPathInfo On
|
|
php_value include_path /usr/share/php/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"
|
|
</Directory>
|
|
|