Author |
|
holziusa
Joined: 02 Jan 2008 Posts: 48
|
Posted: Sat 16 Feb '13 20:13 Post subject: ssl redirect apache to iis7 |
|
|
i want to accept a page reqwest on ssl443 with apache then authenticate via htaccess
then redirect to ssl443 on iis7
not really sue how to
stats apache 2.4.3
update: maybe someone can post a working vhost config
there is about 45 pages of forum ref i have to go through first
a jump start would be appreciated
thanks inadvance |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Mon 18 Feb '13 11:27 Post subject: Re: ssl redirect apache to iis7 |
|
|
You want apache in front the IIS as a reverse proxy or sign in on apache and than redirect? |
|
Back to top |
|
holziusa
Joined: 02 Jan 2008 Posts: 48
|
Posted: Mon 18 Feb '13 21:28 Post subject: |
|
|
thanks for reply
yes apache in front of iis
non ssl login to apache then redirect to IIS ssl page
to login again
got some startup info from this forum but no workin example
like to setup vhost redirect to IIS
unless there is a faster more practicle way in doing this
but must use htaccess so i can manually control
login info
thanks inadvance |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Thu 21 Feb '13 20:19 Post subject: |
|
|
Well a reverse proxy setup is easy
Code: |
LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_connect_module modules/mod_proxy_connect.so
LoadModule proxy_http_module modules/mod_proxy_http.so
|
SSL vhost
Code: |
AuthType Basic
AuthName "By Invitation Only"
AuthBasicProvider file
AuthUserFile C:/apache24/passwd/passwords
Require valid-user
<Location />
ProxyPass http://192.168.100.1/
ProxyPassReverse http://192.168.100.1/
</Location>
|
|
|
Back to top |
|
holziusa
Joined: 02 Jan 2008 Posts: 48
|
Posted: Thu 21 Feb '13 20:28 Post subject: |
|
|
easy 4 you cause your are "THE MAN"
thanks a bunch |
|
Back to top |
|
holziusa
Joined: 02 Jan 2008 Posts: 48
|
Posted: Fri 01 Mar '13 8:47 Post subject: contact |
|
|
James can i contact you direct |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Sun 03 Mar '13 11:57 Post subject: |
|
|
Yes you can, Steffen must haven given you my adress in CC |
|
Back to top |
|
holziusa
Joined: 02 Jan 2008 Posts: 48
|
Posted: Sun 03 Mar '13 16:18 Post subject: |
|
|
i did and replied to a gmail account days ago
did not come back no errors thought you be bizi |
|
Back to top |
|