~ubuntu-branches/ubuntu/trusty/pywebdav/trusty

« back to all changes in this revision

Viewing changes to DAVServer/config.ini

  • Committer: Package Import Robot
  • Author(s): Mathias Behrle
  • Date: 2012-03-27 13:31:17 UTC
  • mfrom: (1.1.5)
  • Revision ID: package-import@ubuntu.com-20120327133117-ey3l721g9hv9fb79
Tags: 0.9.8-1
* Removing deprecated XB-Python-Version for dh_python2.
* Updating to Standards-Version: 3.9.3, no changes needed.
* Updating year in copyright.
* Adding myself to copyright.
* Adding Format header for DEP5.
* Merging upstream version 0.9.8.
* Updating examples path to new pywebdav structure > 0.9.4.1.
* Adding NEWS file with upgrade hints for 0.9.8.
* Adding Breaks for old reverse dependencies (Closes: #665810).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
# PyWebDAV config.ini
3
 
# Read documents before editing this file
4
 
 
5
 
# Created 11:48 10-08-2006 By Vince Spicer
6
 
 
7
 
 
8
 
[MySQL]
9
 
 
10
 
# Mysql server information
11
 
host=localhost
12
 
port=3306
13
 
user=root
14
 
passwd=rootpw
15
 
 
16
 
# Auth Database Table, Must exists in database prior to firstrun
17
 
dbtable=webDav
18
 
 
19
 
# Create User Database Table and Insert system user
20
 
# Disable after the Table is created; for performance reasons
21
 
firstrun=0
22
 
 
23
 
[DAV]
24
 
 
25
 
# Verbose?
26
 
# verbose enabled is like loglevel = INFO
27
 
verbose = 1
28
 
 
29
 
#log level : DEBUG, INFO, WARNING, ERROR, CRITICAL (Default is WARNING)
30
 
#loglevel = WARNING
31
 
 
32
 
# main directory 
33
 
directory = /home/spamies/tmp
34
 
 
35
 
# Server address
36
 
port = 8081
37
 
host = localhost
38
 
 
39
 
# disable auth
40
 
noauth = 0
41
 
 
42
 
# Enable mysql auth
43
 
mysql_auth=0
44
 
 
45
 
# admin user
46
 
user = test
47
 
password = test00
48
 
 
49
 
# daemonize?
50
 
daemonize = 0
51
 
daemonaction = start
52
 
 
53
 
# instance counter
54
 
counter = 0
55
 
 
56
 
# mimetypes support
57
 
mimecheck = 1
58
 
 
59
 
# webdav level (1 = webdav level 2)
60
 
lockemulation = 1
61
 
 
62
 
# internal features
63
 
#chunked_http_response = 1
64
 
#http_request_use_iterator = 0
65
 
#http_response_use_iterator = 0
66