Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use Jboss +Apache solution. [Please see my httpd-vhost.conf file below]

I tried to exclude my images folder from proxy redirection.

What I try to do is, pick images from /usr/local/images/ alias when I use http://www.mysite.com/images and https://www.mysite.com/images links.

This is working fine with virtual host port 80 but when I do same configurations on virtual host port 443 it’s not picking up images from /usr/local/images/ alias and redirect to Jboss.

In other words http://www.mysite.com/images link is working but https://www.mysite.com/images is not working with same configurations.

Also please note that rest of SSL configurations are working fine. I can access https://www.mysite.com without any issue.

Can anyone please help on this?

<VirtualHost www.mysite.com:80>
ServerName www.mysite.com
ProxyPreserveHost On
ProxyPass /images !
Alias /images/ /usr/local/images/
ProxyPass / http://www.mysite.com:8080/
ProxyPassReverse / http://www.mysite.com:8080/
</VirtualHost>


<VirtualHost www.mysite.com:443>
ServerName www.mysite.com
SSLEngine On
SSLCertificateFile "\jboss-5.1.0.GA\server\default\conf\mysite.crt"
SSLCertificateKeyFile "\jboss-5.1.0.GA\server\default\conf\mysite.key.insecure"
ProxyPreserveHost On
ProxyPass /images !
Alias /images/ /usr/local/images/
ProxyPass / http://www.mysite.com:8080/
ProxyPassReverse / http://www.mysite.com:8080/
</VirtualHost>

<Directory /usr/local/images/>
Options Indexes FollowSymLinks Includes ExecCGI
AllowOverride All
Order Allow,Deny
Allow from all
Require all granted
</Directory>
share|improve this question
Mistakenly I had uploaded incorrect httpd-vhost.conf file. Now I have corrected. – Unknown Nov 23 '12 at 5:25

1 Answer

up vote 0 down vote accepted

I found a solution.

What I have done is create separate httpd-ssl.conf file and Listen 443. Other configurations are same.

Please see my httpd-ssl.conf file below.

Thanks

Listen 443

<VirtualHost www.mysite.com:443>
 ServerName www.mysite.com
 SSLEngine On
 SSLCertificateFile "\jboss-5.1.0.GA\server\default\conf\mysite.crt"
 SSLCertificateKeyFile "\jboss-5.1.0.GA\server\default\conf\mysite.key.insecure"
 SSLProxyEngine On
 ProxyRequests Off
 ProxyPreserveHost On
 ProxyPass /images !
 Alias /images/ /usr/local/images/
 ProxyPass / https://www.mysite.com:7443/
 ProxyPassReverse / https://www.mysite.com:7443/
</VirtualHost>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.