wsgidav.conf.sample 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. ################################################################################
  2. # Sample WsgiDAV configuration file
  3. #
  4. # 1. Rename this file to `wsgidav.conf`
  5. # 2. Adjust settings as appropriate
  6. # 3. Run tracim as you always do :)
  7. #
  8. ################################################################################
  9. ################################################################################
  10. # SERVER OPTIONS
  11. #===============================================================================
  12. # host = "localhost"
  13. # host = "192.168.0.1"
  14. host = "0.0.0.0"
  15. port = 3030
  16. show_history = True
  17. show_deleted = True
  18. show_archived = True
  19. manager_locks = True
  20. root_path = ''
  21. # Tracim doesn't support digest auth for webdav
  22. acceptbasic = True
  23. acceptdigest = False
  24. defaultdigest = False
  25. #===============================================================================
  26. # Lock Manager
  27. #
  28. # Example: Use PERSISTENT shelve based lock manager
  29. #from wsgidav.lock_storage import LockStorageShelve
  30. #locksmanager = LockStorageShelve("wsgidav-locks.shelve")