comparison doc/roundup-server.ini.example @ 5102:96dc9f07340a

issue2161722: oudated docs Fix old entry in FAQ, update roundup-server config docs and example file from current roundup-server output. Update some typos in .py files.
author John Rouillard <rouilj@ieee.org>
date Sun, 26 Jun 2016 20:53:11 -0400
parents 679118b572d5
children 09af33304790
comparison
equal deleted inserted replaced
5101:d043a09952db 5102:96dc9f07340a
1 ; This is a sample configuration file for roundup-server. See the 1 ; This is a sample configuration file for roundup-server. See the
2 ; admin_guide for information about its contents. 2 ; admin_guide for information about its contents.
3
3 [main] 4 [main]
4 port = 8080
5 ;hostname =
6 ;user =
7 ;group =
8 ;log_ip = yes
9 ;pidfile =
10 ;logfile =
11 ;template =
12 ;ssl = no
13 ;pem =
14 5
6 # Host name of the Roundup web server instance.
7 # If left unconfigured (no 'host' setting) the default
8 # will be used.
9 # If empty, listen on all network interfaces.
10 # If you want to explicitly listen on all
11 # network interfaces, the address 0.0.0.0 is a more
12 # explicit way to achieve this, the use of an empty
13 # string for this purpose is deprecated and will go away
14 # in a future release.
15 # Default: localhost
16 host = localhost
15 17
16 ; Add one of these per tracker being served 18 # Port to listen on.
19 # Default: 8080
20 port = 8017
21
22 # Path to favicon.ico image file. If unset, built-in favicon.ico is used.
23 # The path may be either absolute or relative
24 # to the directory containing this config file.
25 # Default: favicon.ico
26 favicon = favicon.ico
27
28 # User ID as which the server will answer requests.
29 # In order to use this option, the server must be run initially as root.
30 # Availability: Unix.
31 # Default:
32 user = roundup
33
34 # Group ID as which the server will answer requests.
35 # In order to use this option, the server must be run initially as root.
36 # Availability: Unix.
37 # Default:
38 group =
39
40 # don't fork (this overrides the pidfile mechanism)'
41 # Allowed values: yes, no
42 # Default: no
43 nodaemon = no
44
45 # Log client machine names instead of IP addresses (much slower)
46 # Allowed values: yes, no
47 # Default: no
48 log_hostnames = no
49
50 # File to which the server records the process id of the daemon.
51 # If this option is not set, the server will run in foreground
52 #
53 # The path may be either absolute or relative
54 # to the directory containing this config file.
55 # Default:
56 pidfile =
57
58 # Log file path. If unset, log to stderr.
59 # The path may be either absolute or relative
60 # to the directory containing this config file.
61 # Default:
62 logfile =
63
64 # Set processing of each request in separate subprocess.
65 # Allowed values: debug, none, thread, fork.
66 # Default: fork
67 multiprocess = fork
68
69 # Tracker index template. If unset, built-in will be used.
70 # The path may be either absolute or relative
71 # to the directory containing this config file.
72 # Default:
73 template =
74
75 # Enable SSL support (requires pyopenssl)
76 # Allowed values: yes, no
77 # Default: no
78 ssl = no
79
80 # PEM file used for SSL. A temporary self-signed certificate
81 # will be used if left blank.
82 # The path may be either absolute or relative
83 # to the directory containing this config file.
84 # Default:
85 pem =
86
87 # Roundup trackers to serve.
88 # Each option in this section defines single Roundup tracker.
89 # Option name identifies the tracker and will appear in the URL.
90 # Option value is tracker home directory path.
91 # The path may be either absolute or relative
92 # to the directory containing this config file.
17 [trackers] 93 [trackers]
18 home = /path/to/tracker
19 94
95 demo = /trackers/demo
96 sysadmin = /trackers/sysadmin

Roundup Issue Tracker: http://roundup-tracker.org/