SSL Proxy: Forwarding without the encryption
        Posted  
        
            by 
                John
            
        on Server Fault
        
        See other posts from Server Fault
        
            or by John
        
        
        
        Published on 2012-10-16T03:44:38Z
        Indexed on 
            2012/10/16
            5:07 UTC
        
        
        Read the original article
        Hit count: 516
        
I have a python application listening on port 9001 for HTTP traffic.
I'm trying to configure Apache (or anything, really) to listen on port 443 for HTTPS connections, and then forward the connection, sans encryption, to port 9001 on the same machine. My application would then reply via the proxy, where the encryption would be reapplied, and returned to the client transparently.
I'm not doing anything crazy with the site names and SSL certs, I have one public IP, one hostname, and one SSL cert. Stripping the encryption at the proxy doesn't seem to be a common requirement.
Is what I'm asking for a normal requirement? Are there other concerns with this sort of configuration?
© Server Fault or respective owner