Mercurial > p > roundup > code
diff doc/admin_guide.txt @ 3883:679118b572d5
add SSL to roundup-server via pyopenssl
If pyopenssl is installed you can enable SSL support in
roundup-server through two new config options.
new command line options:
-s enable SSL
-e specify key/cert PEM (optional)
If no key/cert is specified a warning is printed and a
temporary, self-signed key+cert is generated for you.
Updated docs for all this.
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Mon, 03 Sep 2007 17:20:07 +0000 |
| parents | 2359d6304a4f |
| children | f764931f2c67 |
line wrap: on
line diff
--- a/doc/admin_guide.txt Mon Sep 03 17:14:09 2007 +0000 +++ b/doc/admin_guide.txt Mon Sep 03 17:20:07 2007 +0000 @@ -2,7 +2,7 @@ Administration Guide ==================== -:Version: $Revision: 1.24 $ +:Version: $Revision: 1.25 $ .. contents:: @@ -83,6 +83,8 @@ ;pidfile = ;logfile = ;template = + ;ssl = no + ;pem = [trackers] ; Add one of these per tracker being served @@ -114,6 +116,14 @@ Specifies a template used for displaying the tracker index when multiple trackers are being used. The variable "trackers" is available to the template and is a dict of all configured trackers. +**ssl** + Enables the use of SSL to secure the connection to the roundup-server. + If you enable this, ensure that your tracker's config.ini specifies + an *https* URL. +**pem** + If specified, the SSL PEM file containing the private key and certificate. + If not specified, roundup will generate a temporary, self-signed certificate + for use. **trackers** section Each line denotes a mapping from a URL component to a tracker home. Make sure the name part doesn't include any url-unsafe characters like
