I am trying to setup a new site in PA using web2py but I keep getting "Unconfigured Domain". I have read thru the forums in PA and web2py but I can't find what is wrong.
The domain's (courticeecoprojects.org) CNAME points to ceco.pythonanywhere.com The domain home directory or forward location pointer is set to URL ceco.pythonanywhere.com
The WSGI file looks like this:
import os
import sys
# add your project directory to the sys.path
project_home = u'/home/ceco/web2py/'
if project_home not in sys.path:
sys.path = [project_home] + sys.path
sys.stdout = sys.stderr
os.chdir(project_home)
# serve web2py via WSGI handler
from gluon.main import wsgibase as application
I have re-created the parameters_80 and parameters_443 files but the problem continues. Any help is appreciated.
Thanks, Denes