Mercurial > p > roundup > code
diff doc/roundup-server.ini.example @ 7464:82bbb95e5690 issue2550923_computed_property
merge from tip into issue2550923_computed_property
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Thu, 08 Jun 2023 00:10:32 -0400 |
| parents | 09af33304790 |
| children |
line wrap: on
line diff
--- a/doc/roundup-server.ini.example Mon Nov 07 22:58:38 2022 -0500 +++ b/doc/roundup-server.ini.example Thu Jun 08 00:10:32 2023 -0400 @@ -47,6 +47,14 @@ # Default: no log_hostnames = no +# Have http(s) request logging done via python logger module. +# If set to yes the python logging module is used with qualname +# 'roundup.http'. Otherwise logging is done to stderr or the file +# specified using the -l/logfile option. +# Allowed values: yes, no +# Default: no +loghttpvialogger = no + # File to which the server records the process id of the daemon. # If this option is not set, the server will run in foreground # @@ -84,6 +92,19 @@ # Default: pem = +# Comma separated list of extra headers that should +# be copied into the CGI environment. +# E.G. if you want to access the REMOTE_USER and +# X-Proxy-User headers in the back end, +# set to the value REMOTE_USER,X-Proxy-User. +# Allowed values: comma-separated list of words +# Default: +include_headers = + +# Change to HTTP/1.0 if needed. This disables keepalive. +# Default: HTTP/1.1 +http_version = HTTP/1.1 + # Roundup trackers to serve. # Each option in this section defines single Roundup tracker. # Option name identifies the tracker and will appear in the URL.
