Hello
I have some records in my routes.py
in routes_in:
(r'.*://$sub\.domain\.ru:.* /?', r'/myapp/company/index/$sub'),
in routes_out:
('/myapp/company/index/$sub', 'http://$sub.domain.ru'),
So, routes_in workds fine, but routes_out works only by http.
Is there a way to get protocol in routes_out?

