Django app cannot be accesed remotely with Apache+mod_wsgi -
i have following problem:
- i cannot remotely access django app apache+mod_wsgi.
but can remotely access django app django development server manage.py runserver 0.0.0.0:8000
. , can locally access django app apache+mod_wsgi on local computer trough port 80.
so know why cannot access remotely trough apache.
this httpd.conf (i have posted modified, else default.)
listen *:80 loadmodule wsgi_module modules/mod_wsgi.so <ifmodule ssl_module> sslrandomseed startup builtin sslrandomseed connect builtin </ifmodule> wsgiscriptalias / c:/users/ricardo/dropbox/django_scada/django_scada/apache/wsgi.py wsgipythonpath c:/users/ricardo/dropbox/django_scada alias /static/ c:/users/ricardo/dropbox/static/ <directory c:/users/ricardo/dropbox/static/> order deny,allow allow </directory> <directory c:/users/ricardo/dropbox/django_scada/django_scada/apache> <files wsgi.py> order deny,allow allow </files> </directory>
i have never configured apache server not sure problem is. think apache+mod_wsgi integreation works fine because not have problem local access, must configuration remotely acccess apache. when try access computer, nothing appears on access log, when locally.
which steps should follow solve problems?
thanks in advance!
did check firewall settings? port 80 open world?
Comments
Post a Comment