/usr/share/doc/python-webdav/examples/config.ini is in python-webdav 0.9.8-9.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | # PyWebDAV config.ini
# Read documents before editing this file
# Created 11:48 10-08-2006 By Vince Spicer
[MySQL]
# Mysql server information
host=localhost
port=3306
user=root
passwd=rootpw
# Auth Database Table, Must exists in database prior to firstrun
dbtable=webDav
# Create User Database Table and Insert system user
# Disable after the Table is created; for performance reasons
firstrun=0
[DAV]
# Verbose?
# verbose enabled is like loglevel = INFO
verbose = 1
#log level : DEBUG, INFO, WARNING, ERROR, CRITICAL (Default is WARNING)
#loglevel = WARNING
# main directory
directory = /home/spamies/tmp
# Server address
port = 8081
host = localhost
# disable auth
noauth = 0
# Enable mysql auth
mysql_auth=0
# admin user
user = test
password = test00
# daemonize?
daemonize = 0
daemonaction = start
# instance counter
counter = 0
# mimetypes support
mimecheck = 1
# webdav level (1 = webdav level 2)
lockemulation = 1
# internal features
#chunked_http_response = 1
#http_request_use_iterator = 0
#http_response_use_iterator = 0
|