Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re[2]: Nginx возвращает неправи льные ссылки
Hello osipen,
Monday, February 1, 2010, 2:40:59 PM, you wrote:
> Переставил nginx на 0.7.64 (не помогло)
> proxy_set_header Host $host; (исправился url но остался http, а
> нужно https)
> Сделал так:
> server {
> listen *:443; # порт https
> listen *:80; # порт http
> server_name my.site.com; # ваш сайт
> include /etc/nginx/ssl.conf; # подключение конфигурации ssl
> if ( $scheme = "http" ) {
> rewrite ^/(.*)$ https://$host/$1 permanent;
> }
> ...
> }
> Заработало. Вопрос есть еще какие нибудь способы? А то мне как то
> реализация не по душе.
server {
listen 80;
server_name my.site.com;
rewrite ^ https://$host$request_uri? permanent;
}
server {
listen 443;
server_name my.site.com;
include /etc/nginx/ssl.conf;
}
--
Best regards,
Denis mailto:denis@xxxxxxxxxx
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
|