Skip to content

Commit

Permalink
README: switch to python3 example
Browse files Browse the repository at this point in the history
Switch the documented example mod_wsgi configuration to use python36
file paths since Python 2 is deprecated.
  • Loading branch information
ktdreyer committed Apr 24, 2020
1 parent ebc1f98 commit cd036ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ to use mod_wsgi, try something like this::

WSGIDaemonProcess kdcproxy processes=2 threads=15 maximum-requests=1000 \
display-name=%{GROUP}
WSGIImportScript /usr/lib/python2.7/site-packages/kdcproxy/__init__.py \
WSGIImportScript /usr/lib/python3.6/site-packages/kdcproxy/__init__.py \
process-group=kdcproxy application-group=kdcproxy
WSGIScriptAlias /KdcProxy /usr/lib/python2.7/site-packages/kdcproxy/__init__.py
WSGIScriptAlias /KdcProxy /usr/lib/python3.6/site-packages/kdcproxy/__init__.py
WSGIScriptReloading Off

<Location "/KdcProxy">
Expand Down

0 comments on commit cd036ab

Please sign in to comment.