@@ -115,7 +115,7 @@ jinja2
115115pyjwt
116116 To use jwt tokens for login (experimental), install pyjwt. If you
117117 don't have it installed, jwt tokens are not supported.
118-
118+
119119Windows Service
120120 You can run Roundup as a Windows service if pywin32_ is installed.
121121 Otherwise it must be started manually.
@@ -558,10 +558,10 @@ method.
558558 installed apache packages, you can use ``dpkg -l | grep apache``.
559559 If apache2 or apache2-dev are not installed, they install them
560560 with:
561-
561+
562562 - ``sudo apt update``
563563 - ``sudo apt install apache2 apache2-dev``
564-
564+
5655652. If ``pip`` is not already installed, install it with
566566 ``sudo apt install python-pip``
567567
@@ -633,7 +633,7 @@ to configure a UNIX group with appropriate privileges as described in
633633 ``sudo usermod -a -G mytrackergrp admin``
6346343. Add user that runs Apache (the default on Ubuntu is www-data) run:
635635 ``sudo usermod -a -G mytrackergrp www-data``
636- 4. Add user mail service runs as (e.g. daemon) run:
636+ 4. Add user mail service runs as (e.g. daemon) run:
637637 ``sudo usermod -a -G mytrackergrp daemon``
6386385. Change group of the database in the tracker folder run:
639639 ``sudo chgrp -R mytrackergrp ~/trackers/mytracker``.
@@ -832,23 +832,23 @@ as needed):
832832 <VirtualHost *:80>
833833 CustomLog /var/log/apache2/access.log vhost_combined
834834
835- # allow access to roundup docs
835+ # allow access to roundup docs
836836 Alias /doc/ /home/roundup/install/share/doc/roundup/html/
837837
838- # make apache serve static assets like css rather than
838+ # make apache serve static assets like css rather than
839839 # having roundup serve the files
840840 Alias /foo/@@file/ /srv/roundup/foo/html/
841841
842- # make /foo into /foo/
842+ # make /foo into /foo/
843843 RedirectMatch permanent ^/(foo)$ /$1/
844844
845- # start a wsgi daemon process running as user roundup-foo
846- # in group roundup-foo. This also changes directory to
847- # ~roundup-foo before it starts roundup.wsgi.
845+ # start a wsgi daemon process running as user roundup-foo
846+ # in group roundup-foo. This also changes directory to
847+ # ~roundup-foo before it starts roundup.wsgi.
848848 WSGIDaemonProcess roundup-foo display-name=roundup-foo user=roundup-foo group=roundup-foo threads=25
849849
850850 # make tracker available at /foo and tie it into the
851- # wsgi script below.
851+ # wsgi script below.
852852 WSGIScriptAlias /foo /srv/roundup/foo/roundup.wsgi
853853 <Location /foo>
854854 WSGIProcessGroup roundup-foo
@@ -874,12 +874,12 @@ WSGI handler. This is an enhanced version to be put into
874874
875875 if enabled:
876876 # Add the directory with the roundup installation
877- # subdirectory to the python path.
877+ # subdirectory to the python path.
878878 sys.path.insert(0, '/home/roundup/install/lib/python')
879879
880880 # obtain the WSGI request dispatcher
881881 from roundup.cgi.wsgi_handler import RequestDispatcher
882-
882+
883883 tracker_home = os.path.join(os.getcwd(), 'instance')
884884 application = RequestDispatcher(tracker_home)
885885 else:
0 commit comments