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: Reverse Proxy https--->http doesn't work
Author
tatankam



Joined: 31 Mar 2010
Posts: 2

PostPosted: Wed 31 Mar '10 10:50    Post subject: Reverse Proxy https--->http doesn't work Reply with quote

Hallo.

I want to setup an Apache Reverse proxy from https to an internal http server.

Scenario:
1) Apache with SSL active and thi configuration:
.
.

<VirtualHost provamario:443>
ServerName provamario:443
SSLProxyEngine On
proxyrequests off
ProxyPreserveHost On
rewriteengine on
ProxyTimeout 1800
ProxyPass / http://sporvivv02/
ProxyPassReverse / http://sporvivv02/
SSLEngine On
SSLCertificateFile conf/ssl/provamario.cert
SSLCertificateKeyFile conf/ssl/provamario.key
</VirtualHost>
.
.


I haven't http port 80 active.

Now, whne I digit http://provamario/ I have many missing objects on my page beacuase they are http://provamario/.... instead of https://provamario/...

Why this?

What is the problem?

Thanks for your help.
Mario
Back to top
James Blond
Moderator


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

PostPosted: Tue 13 Apr '10 16:44    Post subject: Reply with quote

Hi,
what is in your error log about that?

Quote:

Now, whne I digit http://provamario/ I have many missing objects on my page beacuase they are http://provamario/.... instead of https://provamario/...


You mean you type https://provamario/ ??
Back to top


Reply to topic   Topic: Reverse Proxy https--->http doesn't work View previous topic :: View next topic
Post new topic   Forum Index -> Apache