1

I want to add multiple entries for python-path in the 000-default.conf apache configuration file.

WSGIDaemonProcess my_project python-path=/home/user/Documents/my_project python-home=/home/user/Documents/my_project/virtualenv

In the above line, python-path variable contains the path to my django project root directory, I want to specify some other directory path so that I can import those modules from my django project app files.

1 Answer 1

2

When specifying the PYTHONPATH env variable, multiple paths are separated by ":", you could try the same here, i.e. python-path=/some/dir:/some/other/dir.

Sign up to request clarification or add additional context in comments.

1 Comment

Damn, I was trying with ; or , Thanks Man.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.