• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Tim Cooke
  • Devaka Cooray
Sheriffs:
  • Liutauras Vilda
  • paul wheaton
  • Rob Spoor
Saloon Keepers:
  • Tim Moores
  • Stephan van Hulst
  • Tim Holloway
  • Piet Souris
  • Mikalai Zaikin
Bartenders:
  • Carey Brown
  • Roland Mueller

HTTPS Traffic through DMZ

 
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How to let HTTPS traffic go through the Apache HTTP server in DMZ w/o
decrypting and re-encrypting it? The HTTPS traffic comes through public
firewall port 443, and then is forwarded to the internal firewall with
a different port number 4443.

Can it be done by just configuring the http server or using a third party
software?
 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My understading is this is not possible. Your client browser always works with web Server in the DMZ so things get decrypted in that web server. In other words SSL communication is with DMZ web server to Client Browser. Proxy servers of course do not decrypt your data while forwarding to some other server

Dasun Perera
------------
http://dasun.is-here.lk/
 
Ranch Hand
Posts: 165
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Glen Cai:
How to let HTTPS traffic go through the Apache HTTP server in DMZ w/o
decrypting and re-encrypting it? The HTTPS traffic comes through public
firewall port 443, and then is forwarded to the internal firewall with
a different port number 4443.

Can it be done by just configuring the http server or using a third party
software?



Try Apache mod_rewrite module if you are using Apache2.
 
Destroy anything that stands in your way. Except this tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic