Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: $scheme
On Jan 27, 2011 6:24 AM, "User" <nginx-forum@xxxxxxxx> wrote:
>
> Всем привет!
> Настраиваю автоматический редирект на
> https. При вот таком варианте
> [code]
> if ($scheme = 'http')
> {
> rewrite ^(.*)$ https://xxxxxxx.ru$1 permanent;
> }
> [/code]
> редирект идет постоянно, как для
> обращений по http, так и для https... В чем
> фишка?
А в чем фишка прописывать его для всех вхостов? KISS:
Server {
Liset 1.2.3.4:80;
Server_name secure.mysite.ru;
Rewrite (.*) https://$host$1;
}
>
> Posted at Nginx Forum: http://forum.nginx.org/read.php?21,169949,169949#msg-169949
>
>
> _______________________________________________
> nginx-ru mailing list
> nginx-ru@xxxxxxxxx
> http://nginx.org/mailman/listinfo/nginx-ru
--
Sent from google android
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|