Skip to content

Commit d431b3b

Browse files
committed
Update roundup-server example config file example and docs
Exampl and doc was out of date. Missing settings.
1 parent 69c3037 commit d431b3b

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

doc/admin_guide.txt

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,14 @@ The basic configuration file is as follows (taken from the
125125
# Default: no
126126
log_hostnames = no
127127

128+
# Have http(s) request logging done via python logger module.
129+
# If set to yes the python logging module is used with qualname
130+
# 'roundup.http'. Otherwise logging is done to stderr or the file
131+
# specified using the -l/logfile option.
132+
# Allowed values: yes, no
133+
# Default: no
134+
loghttpvialogger = no
135+
128136
# File to which the server records the process id of the daemon.
129137
# If this option is not set, the server will run in foreground
130138
#
@@ -162,6 +170,19 @@ The basic configuration file is as follows (taken from the
162170
# Default:
163171
pem =
164172

173+
# Comma separated list of extra headers that should
174+
# be copied into the CGI environment.
175+
# E.G. if you want to access the REMOTE_USER and
176+
# X-Proxy-User headers in the back end,
177+
# set to the value REMOTE_USER,X-Proxy-User.
178+
# Allowed values: comma-separated list of words
179+
# Default:
180+
include_headers =
181+
182+
# Change to HTTP/1.0 if needed. This disables keepalive.
183+
# Default: HTTP/1.1
184+
http_version = HTTP/1.1
185+
165186
# Roundup trackers to serve.
166187
# Each option in this section defines single Roundup tracker.
167188
# Option name identifies the tracker and will appear in the URL.

doc/roundup-server.ini.example

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ nodaemon = no
4747
# Default: no
4848
log_hostnames = no
4949

50+
# Have http(s) request logging done via python logger module.
51+
# If set to yes the python logging module is used with qualname
52+
# 'roundup.http'. Otherwise logging is done to stderr or the file
53+
# specified using the -l/logfile option.
54+
# Allowed values: yes, no
55+
# Default: no
56+
loghttpvialogger = no
57+
5058
# File to which the server records the process id of the daemon.
5159
# If this option is not set, the server will run in foreground
5260
#
@@ -84,6 +92,19 @@ ssl = no
8492
# Default:
8593
pem =
8694

95+
# Comma separated list of extra headers that should
96+
# be copied into the CGI environment.
97+
# E.G. if you want to access the REMOTE_USER and
98+
# X-Proxy-User headers in the back end,
99+
# set to the value REMOTE_USER,X-Proxy-User.
100+
# Allowed values: comma-separated list of words
101+
# Default:
102+
include_headers =
103+
104+
# Change to HTTP/1.0 if needed. This disables keepalive.
105+
# Default: HTTP/1.1
106+
http_version = HTTP/1.1
107+
87108
# Roundup trackers to serve.
88109
# Each option in this section defines single Roundup tracker.
89110
# Option name identifies the tracker and will appear in the URL.

0 commit comments

Comments
 (0)