We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c90858a commit a9726c4Copy full SHA for a9726c4
docs/deploying/mod_wsgi.rst
@@ -61,7 +61,12 @@ Store that file somewhere that you will find it again (e.g.:
61
`/var/www/yourapplication`) and make sure that `yourapplication` and all
62
the libraries that are in use are on the python load path. If you don't
63
want to install it system wide consider using a `virtual python`_
64
-instance.
+instance. Keep in mind that you will have to actually install your
65
+application into the virtualenv as well. Alternatively there is the
66
+option to just patch the path in the `.wsgi` file before the import::
67
+
68
+ import sys
69
+ sys.path.insert(0, '/path/to/the/application')
70
71
Configuring Apache
72
------------------
0 commit comments