hi, instead of showing 'app' application it shows it show init app but if I go http://mysite.com/app it works
routes.py
#!/usr/bin/python
# -*- coding: utf-8 -*-
routes_in = (
('(.*):https?://(.*)mysite\.com:(.*)/', '/app/'),
)
def __routes_doctest():
pass
if __name__ == '__main__':
import doctest
from gluon.rewrite import *
load(routes=__file__)
doctest.testmod()
--

