Hi Guys
I've got an an internal site on a http://internal1 that we want to
expose to the world using a apache reverse proxy running SSL i.e
https://external.org
We're using mod_proxy mod_proxy_html

ProxyPass /external/ http://internal
<Location /internal1/>
        ProxyPassReverse /
        SetOutputFilter proxy-html
        ProxyHTMLURLMap /       /internal1/
        ProxyHTMLURLMap /internal1   /internal1
        ProxyHTMLURLMap /internal1  /internal1/media/
        ProxyHTMLURLMap /site_media   /internal1/site_media
        ProxyHTMLURLMap /admin   /internal1/admin/
        DefaultType None
        RequestHeader   unset   Accept-Encoding
</Location>
Note we are also a spyce and php application (http://internal2,http://
interna3) that we also want to expose and we only have one fixed ip
and SSL cert assigned to external.org. As such we can't use as
separate virtual server for each external application

Every thing basically works  (IE of course has been a bitch!!)
except that when you login in you get redirected to the http://external
My login (@login_required) my login template looks like

<form method="post" action="?next={{ next|default:"/internal/" }}">
        <p class="entry_layout">
        <label for="id_username">Username:</label>{{ form.username }}
        <br />
        <br />
        <label for="id_password">Password:</label>{{ form.password }}
        <p style="padding-left: 230px;">
        <input type="submit" value="login" />
</form>
note this works fine with http://internal1
Can anyone give me some pointers??
Thanks
Regards
Chris



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to