Помогите с редиректом

luckysrg nginx-forum at nginx.us
Tue Jul 15 08:41:45 UTC 2014


Всем привет, очень нужна помощь, сайт был полностью на https, в связи с этим
были характерные проблемы с поисковикми, не индексиравались картинки, нет
favicon. Собственно, нужно теперь поставить 301 редирект на все страницы с
https, но оставить редирект на https в личный кабинет и на страницу оплаты,
с первой частью вопросов нет, но, вот, чтобы обе части выполняли условия не
получается, прошу помощи.


вот пациент

server {
		server_name example.ru www.example.ru;
		listen 144.*.*.*;
		listen 144.*.*.*:443 ssl;
		disable_symlinks if_not_owner from=$root_path;
		set $root_path /var/www/example/data/www/example.ru;
		#rewrite  ^(.*) https://$host$1 permanent;
		if ( $scheme = "http" ) {
	      rewrite ^/(.*)$	https://$host/$1 permanent;
        }
		location ~*
^.+.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf|woff)$
{
			root $root_path;
			expires 31d;
			access_log /var/www/nginx-logs/example isp;
			access_log /var/www/httpd-logs/example.ru.access.log ;
			error_page 404 = @fallback;
		}
		location / {
			proxy_pass http://144.*.*.*:81;
			proxy_redirect http://144.*.*.*:81/ /;
			proxy_set_header Host $host;
			proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
			proxy_set_header X-Forwarded-Proto $scheme;
			proxy_set_header X-Real-IP $remote_addr;
		}
		location ~* ^/(webstat|awstats|webmail|myadmin|pgadmin)/ {
			proxy_pass http://144.*.*.*:81;
			proxy_redirect http://144.*.*.*:81/ /;
			proxy_set_header Host $host;
			proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
			proxy_set_header X-Forwarded-Proto $scheme;
			proxy_set_header X-Real-IP $remote_addr;
		}
		location @fallback {
			proxy_pass http://144.*.*.*:81;
			proxy_set_header Host $host;
			proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
			proxy_set_header X-Forwarded-Proto $scheme;
			proxy_set_header X-Real-IP $remote_addr;
		}
		location ^~ /webstat/ {
			auth_basic "Restricted area";
			auth_basic_user_file /var/www/example/data/etc/665870.passwd;
			try_files $uri @fallback;
		}
		include /usr/local/ispmgr/etc/nginx.inc;
		ssl_certificate /var/www/httpd-cert/example/ssl-example.crt;
		ssl_certificate_key /var/www/httpd-cert/example/ssl-example.key;
		#ssl_protocols SSLv3 TLSv1;
		#Disables all weak ciphers
		#ssl_ciphers ALL:!aNULL:!ADH:!eNULL:!LOW:!EXP:RC4+RSA:+HIGH:+MEDIUM;
		ssl_ciphers RC4:HIGH:!aNULL:!MD5;
		ssl_prefer_server_ciphers on;
	}

Posted at Nginx Forum: http://forum.nginx.org/read.php?21,251769,251769#msg-251769



Подробная информация о списке рассылки nginx-ru