it should be a recurrent question, but I could not find anything related...

I have two domains using the same web2py:

routes.py
# -*- coding: utf-8 -*-

routers = dict(

    # base router
    BASE=dict(
        default_application='app1',
        domains = {
            'py.test.com': 'app1',
            'py2.test.com': 'app2'
        }
    ),

    app1=dict(
        default_controller='xpto'
    ),

)

The problem is that I only have one configuration for DEFAULT APPLICATION 
and it became default in both domains, even if I add domains key with the 
domains (each one with its default app).

If I remove the default_applicatio key... both domains redirect to 
welcome...

Anyone can help me to know how to create one default_application for each 
domain?

Thanks!




-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to