Re: Basic configuration for running under Apache

2016-11-16 Thread Ricardo Prado
sample configuration WSGIDaemonProcess framework python-path=/mnt/g/Python/osvaldo/framework/:/mnt/g/Python/osvaldo/framework/lib/python2.7/site-packages WSGIProcessGroup framework WSGIScriptAlias / /mnt/g/Python/osvaldo/framework/framework/wsgi.py ServerName 127.0.0.2

Re: Basic configuration for running under Apache

2016-11-15 Thread Antonis Christofides
The author of that snippet decided that the root directory of the Django project is named "mysite.com", whereas the Django project itself is "mysite". While this is plausible, it is suboptimal as an example because usually the root directory of the Django project has the same name as the Django

Re: Basic configuration for running under Apache

2016-11-15 Thread Tim Graham
I think it's just an example directory name. You can use whatever names you like. On Monday, November 14, 2016 at 2:36:44 PM UTC-5, bob gailer wrote: > > https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/modwsgi/ > > This page offers: > > WSGIScriptAlias

Basic configuration for running under Apache

2016-11-14 Thread bob gailer
https://docs.djangoproject.com/en/1.10/howto/deployment/wsgi/modwsgi/ This page offers: WSGIScriptAlias //path/to/mysite.com/mysite/wsgi.py WSGIPythonPath /path/to/mysite.com In my setup this becomes c:\Users\myname\mysite\mysite\wsgi.py I am puzzled by the .com in the example. Can you