File tree Expand file tree Collapse file tree 2 files changed +42
-0
lines changed
Expand file tree Collapse file tree 2 files changed +42
-0
lines changed Original file line number Diff line number Diff 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.
Original file line number Diff line number Diff line change @@ -47,6 +47,14 @@ nodaemon = no
4747# Default: no
4848log_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:
8593pem =
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.
You can’t perform that action at this time.
0 commit comments