我有一个运行ubuntu 16.04 OS的aws上的nginx服务器。我当前的站点SSL“ return 301 https:// $ host $ request_uri”可以正常使用,但是不能在新站点上使用。
我尝试配置默认值,并配置了sites-enabled / website1.ca.conf和sites-enabled / website1.ca.conf
server {
server_name site2.ca www.site2.ca;
listen 80;
listen [::]:80;
return 301 https://$host$request_uri;
#return 301 https://site2.ca$request_uri;
root /var/www/vhosts/site2.ca/;
index index.html index.htm index.php;
此页面无法正常使用site2.ca将您重定向了太多次。 尝试清除您的cookie。 ERR_TOO_MANY_REDIRECTS
答案 0 :(得分:0)
经过几个小时的抽搐,我分析了SSL证书,并意识到Cloudflare的默认设置使用其SSL,而不是站点。
解决方案将“加密”设置为“完全SSL”。