Hi,
I have a host company where I have hosted a website made with django and
I want migrate this website to a web.py app.
Well, the django app is deployed by a "control panel" and I have access
in this server by SSH.
In the root folder (where I have the django app) I have a index.wsgi
file with this content:
import os, sys
os.environ['PYTHON_EGG_CACHE'] = '/home/mywebsite.com.br/.python-eggs'
sys.path.append('/home/mywebsite.com.br/www')
os.environ['DJANGO_SETTINGS_MODULE']='mywebsite.settings'
import django.core.handlers.wsgi
application = django.core.handlers.wsgi.WSGIHandler()
Then, How to adept/adjusts this index.wsgi file to run my web.py app ?
--
You received this message because you are subscribed to the Google Groups
"web.py" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/webpy/-/a7EpeGA767gJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/webpy?hl=en.