ssl акселлератор

Igor Sysoev is at rambler-co.ru
Sun Mar 27 20:59:17 MSD 2005


On Sun, 27 Mar 2005, Denis Shaposhnikov wrote:

> Можно ли nginx настроить, что бы принимал запросы по https и
> проксировал их на backend по http?

Да.

     server {
          listen               443;
          server_name          www.example.com;

          ssl                  on;
          ssl_certificate      /path/to/cert.pem;
          ssl_certificate_key  /path/to/cert.pem;

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


Игорь Сысоев
http://sysoev.ru





More information about the nginx-ru mailing list