Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
https прокси
- To: nginx-ru@xxxxxxxxx
- Subject: https прокси
- From: "InG0d" <nginx-forum@xxxxxxxx>
- Date: Fri, 20 Aug 2010 08:21:31 -0400
- Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To:Date; bh=FDnv4hKq3RDPaDoife4SDUSRYf2xCIHNdyTC8VgCSoU=; b=nDXV8dsf8cFVUjyunRR/kvBuFudpu+ytClKB/EOsrWjQlYrmphIwX6rL36XbV1DgD0udq9ao4psfdVJwHfvuBvh4pcj03lxm5cXGUMua2C65DBmIqaT3+I3ZXG0H3HiV;
nginx выступает фронтом к mongrel. по http все
работает отлично. Попытался настроить
на nginx https, чтобы связка выглядела так
client -> HTTPS Nginx -> http Mongrel. при попытке
соединения браузер выдает
"SSL получило запись, длина которой
превышает максимально допустимую.
(Код ошибки: ssl_error_rx_record_too_long)"
при соединении с локальной машины
vps02:~# openssl s_client -connect xxxxxxxx.ru:443
CONNECTED(00000003)
2484:error:140770FC:SSL routines:SSL23_GET_SERVER_HELLO:unknown
protocol:s23_clnt.c:567:
Можно заставить такую связку работать
?
конфиг
server {
listen 443;
server_name xxxxxxx.ru;
ssl on;
ssl_protocols SSLv3 TLSv1;
ssl_certificate /etc/nginx/ssl/cert.pem;
ssl_certificate_key /etc/nginx/ssl/cert.key;
location ~ /.svn/ {
deny all;
}
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For
$proxy_add_x_forwarded_for;
proxy_pass http://127.0.0.1:3000/;
}
}
Posted at Nginx Forum:
http://forum.nginx.org/read.php?21,121698,121698#msg-121698
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|