NGiNX as SSL Wrapper

Igor Sysoev is at rambler-co.ru
Fri May 22 12:08:37 MSD 2009


On Fri, May 22, 2009 at 09:57:07AM +0200, InterNetX - J??rgen Gotteswinter wrote:

> Hi Igor,
> 
> are there any configuration examples available?

server {
   listen 443;

    ssl                  on;
    ssl_protocols        SSLv3 TLSv1;
    ssl_ciphers          AES128-SHA:AES256-SHA:RC4-SHA:DES-CBC3-SHA:RC4-MD5;
    ssl_certificate      /path/to/cert.pem;
    ssl_certificate_key  /path/to/cert.key;
    ssl_session_cache    shared:SSL:10m;
    ssl_session_timeout  10m;

    location / {
         proxy_pass  http://apache_server;
    }
}

> thanks
> 
> Juergen
> 
> Igor Sysoev wrote:
> >On Fri, May 22, 2009 at 09:15:03AM +0200, InterNetX - J??rgen Gotteswinter 
> >wrote:
> >
> >  
> >>Hello
> >>
> >>can Nginx be used as a SSL Wrapper in Front of some Apache Webservers?
> >>    
> >
> >Yes.
> >
> >
> >  
> 

-- 
Igor Sysoev
http://sysoev.ru/en/





More information about the nginx mailing list