Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
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.
| |
|
Topic: HTTP Proxy and SSL |
|
Author |
|
forumRP
Joined: 05 Jul 2013 Posts: 1 Location: Sri Lanka
|
Posted: Fri 05 Jul '13 13:35 Post subject: HTTP Proxy and SSL |
|
|
Hi All,
I wanted to configure the apache as below,
Client Browser -> HTTPS -> Apache Proxy -> HTTP -> JBOSS
Apache is used for load balancing purpose and SSL front end for users.
This site seems working ok but when i doing a load testing with WebloadUI software . when it reaches 10 users. errors are coming that ( Unable to decrypt SSL data from the server. Error 0x80090326 ) .
I think there are remaining configs need to do on apache. my ssl.conf config as below,
<VirtualHost _default_:443>
ErrorLog logs/ssl_error_log
TransferLog logs/ssl_access_log
LogLevel warn
SSLEngine on
SSLProtocol all -SSLv2
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM:+LOW
SSLCertificateFile /etc/pki/tls/certs/5domains.crt
SSLCertificateKeyFile /etc/pki/tls/private/5domains.key
SSLCertificateChainFile /etc/pki/tls/certs/5domains_intermediate.crt
<Location /Connect>
ProxyPass http://JBOSS-server-IP:8080/Connect
ProxyPassReverse http://JBOSS-server-IP:8080/Connect
Order Allow,Deny
Allow from all
</Location>
<Files ~ "\.(cgi|shtml|phtml|php3?)$">
SSLOptions +StdEnvVars
</Files>
<Directory "/var/www/cgi-bin">
SSLOptions +StdEnvVars
</Directory>
SetEnvIf User-Agent ".*MSIE.*" \
nokeepalive ssl-unclean-shutdown \
downgrade-1.0 force-response-1.0
CustomLog logs/ssl_request_log \
"%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
</VirtualHost>
THANKS. |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7373 Location: Germany, Next to Hamburg
|
|
Back to top |
|
|
|
|
|
|