logo
Apache Lounge
Webmasters

 

About Forum Index Downloads Search Register Log in RSS X


Keep Server Online

If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.

or

Bitcoin

A donation makes a contribution towards the costs, the time and effort that's going in this site and building.

Thank You! Steffen

Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
Post new topic   Forum Index -> Apache View previous topic :: View next topic
Reply to topic   Topic: ssl redirect apache to iis7
Author
holziusa



Joined: 02 Jan 2008
Posts: 48

PostPosted: Sat 16 Feb '13 20:13    Post subject: ssl redirect apache to iis7 Reply with quote

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: 7288
Location: Germany, Next to Hamburg

PostPosted: Mon 18 Feb '13 11:27    Post subject: Re: ssl redirect apache to iis7 Reply with quote

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

PostPosted: Mon 18 Feb '13 21:28    Post subject: Reply with quote

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: 7288
Location: Germany, Next to Hamburg

PostPosted: Thu 21 Feb '13 20:19    Post subject: Reply with quote

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

PostPosted: Thu 21 Feb '13 20:28    Post subject: Reply with quote

easy 4 you cause your are "THE MAN"
thanks a bunch
Back to top
holziusa



Joined: 02 Jan 2008
Posts: 48

PostPosted: Fri 01 Mar '13 8:47    Post subject: contact Reply with quote

James can i contact you direct
Back to top
James Blond
Moderator


Joined: 19 Jan 2006
Posts: 7288
Location: Germany, Next to Hamburg

PostPosted: Sun 03 Mar '13 11:57    Post subject: Reply with quote

Yes you can, Steffen must haven given you my adress in CC Wink
Back to top
holziusa



Joined: 02 Jan 2008
Posts: 48

PostPosted: Sun 03 Mar '13 16:18    Post subject: Reply with quote

i did and replied to a gmail account days ago
did not come back no errors thought you be bizi
Back to top


Reply to topic   Topic: ssl redirect apache to iis7 View previous topic :: View next topic
Post new topic   Forum Index -> Apache