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: Ubuntu apache reverse proxy to jboss
Author
aghering



Joined: 04 Dec 2013
Posts: 1
Location: Holland, rotterdam

PostPosted: Wed 04 Dec '13 22:50    Post subject: Ubuntu apache reverse proxy to jboss Reply with quote

Hello,

I hope that someone here can assist me with this problem because I am currently trying fix it for 2 weeks now and can’t seem to get it working. Well let’s start with explaining my situation.

Environment(home server/learning):

-1 Public IP
-Host Windows Server 2008 R2 AD/DNS/Hyper-V (server0)
+ VM Windows Server 2008 R2 Exchange 2010/IIS (server1)
+ VM Ubuntu server 13.11 Apache 2.4.6 with virtual hosts (server2)
+ VM Windows Server 2008 R2 Blackberry Enterprise Server running on a Jboss webserver (server3)
-All port 80,443 requests points Ubuntu server 13.11 (server2)

Within Apache 2.4.6 I have virtualhost where the setup are as followed

SomeWebsite:80
SomeOtherWebsite:80
Mail.server1.com:443 (internet <---> server2 reverse proxy:443 +CERT <---> 443+CERT server1)
Bes.dnsname.com:443 (internet <---> server2 reverse proxy:443 +CERT <---> 443+CERT server3)

The problem:

For learning purpose I am configuring a blackberry enterprise server(bes) on server3. It’s a clean installation with only the needed applications to run a bes. Because I only have 1 public ip I am trying to reverse proxy this webservice two like server1. The bes webservice is configured to accept connections on port 443. So my first web.conf setup was similar to the setup I used for server1 but I noticed that the webpage was displayed but I couldn’t interact with the page because it was a java application. So digging deeper into this i found that the webpage that bes provided me to use isn’t the real application but more like a iframe setup.

Example:
BES Console address: https://server3.com/webconsole/login
Real address: https://server3.com/websconsole/app

Unfortunately after finding this and editing my web.conf to proxypass –reverse to this real address I encountered a other problem. The bes webconsole works with session id’s and parameters

Example:
https://bes.server3.com/webconsole/app;jsessionid=2C10DDA521DB8408479AAD8F34255C7F? component=login.goToChangeLanguagePageLink&consoleSId=&page=Login&service=direct&session=T

Current httpd.conf for server3:

<VirtualHost *:80>
DocumentRoot /var/www/bes.server3.com
ServerName bes.server3.com
<Directory "/var/www/bes.server3.com">
allow from all
Options +Indexes
</Directory>

RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/?(.*) https:// bes.server3.com/webconsole/login$1 [R,L]

ProxyPreserveHost On
ProxyVia Full
RequestHeader edit Transfer-Encoding Chunked chunked early
RequestHeader unset Accept-Encoding
ProxyRequests Off
TimeOut 1800

SSLEngine On
SSLProxyEngine On
SSLProtocol -all +SSLv3 +TLSv1
SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL:+SSLv3
SSLCertificateFile /var/www/bes.server3.com/cert/server.crt
SSLCertificateKeyFile /var/www/bes.server3.com/cert/server.key

<Location /webconsole/login>
ProxyPass https: //bes.server3.com/webconsole/app
ProxyPassReverse https: //bes.server3.com/webconsole/app
ProxyPassReverseCookiePath /webconsole/app /webconsole/login
SSLRequireSSL
</Location>

<Location /webconsole/assets>
ProxyPass https://bes.server3.com/webconsole/assets
ProxyPassReverse https://bes.server3.com/webconsole/assets
SSLRequireSSL
</Location>

<Location /webconsole/com>
ProxyPass https: //bes.server3.com/webconsole/com
ProxyPassReverse https: //bes.server3.com/webconsole/com
SSLRequireSSL
</Location>

<Location /webconsole/Loader>
ProxyPass https: //bes.server3.com/webconsole/Loader
ProxyPassReverse https: //bes.server3.com/webconsole/Loader
SSLRequireSSL
</Location>

<Location /webconsole/META-INF>
ProxyPass https: //bes.server3.com/webconsole/META-INF
ProxyPassReverse https: //bes.server3.com/webconsole/META-INF
SSLRequireSSL
</Location>


<Location /webconsole/reset>
ProxyPass https: //bes.server3.com/webconsole/reset
ProxyPassReverse https: //bes.server3.com/webconsole/reset
SSLRequireSSL
</Location>

<Location /webconsole/WEB-INF>
ProxyPass https://bes.server3.com/webconsole/WEB-INF
ProxyPassReverse https://bes.server3.com/webconsole/WEB-INF
SSLRequireSSL
</Location>

ErrorLog /var/log/apache2/bes_server3_errorlog
CustomLog /var/log/apache2/bes_server3_com common
</VirtualHost>


as I mentioned before the server I am working on is my own private server used for learning purpose, and if I must rate myself I would say I am a little bit above beginner with Ubuntu servers and apache. I looked all over the internet to find the solution for this but every example did not work for me. I hope with posting my own situation I have more chance to find the answer that will work for me.
Back to top
James Blond
Moderator


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

PostPosted: Thu 05 Dec '13 12:07    Post subject: Reply with quote

Inside my vhost I use mo_proxy_ajp to connect to my jenkins. Than there is no issue with any certs or so.
Code:
<VirtualHost *:443>
    <Location />
        ProxyPass ajp://localhost:8009/
        ProxyPassReverse ajp://localhost:8009/
    </Location>
</virtualhost>
Back to top


Reply to topic   Topic: Ubuntu apache reverse proxy to jboss View previous topic :: View next topic
Post new topic   Forum Index -> Apache