I have django 1.6.5, virtual env 1.11.6, apache webserver installed. I am getting this error in my log - (13)Permission denied: [client xx.xx.xx.xxx:xxxxx] AH00035: access to / denied (filesystem path ‘/root/mysrc’) because search permissions are missing on a component of the path. What I am doing wrong?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
The Apache documentation deals with this error. Check the output of ls -la /root/mysrc Most likely, you just need to set the executable bit on the folder by running:
chmod +x /root/mysrc
You might also want to check out this tutorial on running Django apps with Apache:
From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.