wsgidav.conf.sample 933B

12345678910111213141516171819202122232425262728293031323334
  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. #===============================================================================
  22. # Lock Manager
  23. #
  24. # Example: Use PERSISTENT shelve based lock manager
  25. #from wsgidav.lock_storage import LockStorageShelve
  26. #locksmanager = LockStorageShelve("wsgidav-locks.shelve")