With this setup, I have no access to admin...
https://pythonbrasil.web2py.com.br/admin/design/pytalks
This worked before, any change on routes?
----------------------------------------------------------------------------------------------------
default_application = 'pytalks' # ordinarily set in base routes.py
default_controller = 'default' # ordinarily set in app-specific routes.py
default_function = 'index' # ordinarily set in app-specific routes.py
routers = dict(
# base router
BASE = dict(
default_application = 'pytalks',
domains = {
'pythonbrasil.web2py.com.br':'pytalks',
'talks.python.org.br' : 'pytalks'
},
applications = ['pytalks','admin'],
controllers = 'DEFAULT'
),
)