Guest User

Untitled

a guest
May 26th, 2018
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. root@test:/etc/apache2/sites-enabled# cat 000-default
  2. <VirtualHost *:80>
  3. DocumentRoot /usr/share/davical/htdocs
  4. DirectoryIndex index.php index.html
  5. ServerName 192.168.0.5
  6. Alias /images/ /usr/share/davical/htdocs/images/
  7. <Directory /usr/share/davical/htdocs/>
  8. AllowOverride None
  9. Order allow,deny
  10. Allow from all
  11. </Directory>
  12. php_value include_path /usr/share/awl/inc
  13. php_value magic_quotes_gpc 0
  14. php_value register_globals 0
  15. php_value open_basedir 1
  16. php_value error_reporting "E_ALL & ~E_NOTICE"
  17. php_value default_charset "utf-8"
  18. </VirtualHost>
  19.  
  20. root@test:/etc/davical# cat 192.168.0.5-conf.php
  21. <?php
  22. // $c->domain_name = "mydavicalsite.dyndns.org";
  23. // $c->sysabbr = 'rscds';
  24. $c->admin_email = 'admin@example.net';
  25. $c->system_name = "Really Simple CalDAV Store";
  26. // $c->collections_always_exist = true;
  27. // $c->enable_row_linking = true;
  28. $c->default_locale = en_US.UTF-8;
  29. $c->pg_connect[] = 'dbname=davical port=5432 user=davical_app';
  30. ?>
  31.  
  32. root@test:/etc/davical#
Add Comment
Please, Sign In to add comment