将localhost重定向到https nginx magento

时间:2017-01-03 08:11:17

标签: http nginx https localhost magento-1.9

我在localhost上运行magento网站,并希望将其重定向到https,以便服务工作者可以注册。我的conf文件是

upstream php-handler {
     server unix:/var/run/php5-fpm.sock;
 }

 server {
     listen 80;
     listen              *:443 ssl;

     server_name         mytestsite.com;

     ssl_certificate     /etc/nginx/ssl/wildcard.chained.crt;
     ssl_certificate_key /etc/nginx/ssl/somekey.key;

     return 301 https://$server_name$request_uri;

     # Path to the root of your installation
     root /home/webstack/magento;

     index index.php;
     error_page 403 /core/templates/403.php;
     error_page 404 /core/templates/404.php;

     location = /robots.txt {
         allow all;
         log_not_found off;
         access_log off;
     }

     location ~ ^/(?:\.htaccess|data|config|db_structure\.xml|README) {
             #deny all;
     }

     location / {
             # The following 2 rules are only needed with webfinger
             rewrite ^/.well-known/host-meta /public.php?service=host-meta last;
             rewrite ^/.well-known/host-meta.json /public.php?service=host-meta-json last;

             rewrite ^/.well-known/carddav /remote.php/carddav/ redirect;
             rewrite ^/.well-known/caldav /remote.php/caldav/ redirect;

             rewrite ^(/core/doc/[^\/]+/)$ $1/index.html;

             #try_files $uri $uri/ index.php;
             try_files $uri $uri/ /index.php?$query_string;
     }


     location ~ \.php(?:$|/) {
             try_files $uri $uri/ /index.php;

             fastcgi_split_path_info ^(.+\.php)(/.+)$;
             include fastcgi_params;
             fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
             fastcgi_param PATH_INFO $fastcgi_path_info;
             #fastcgi_param HTTPS on;
             fastcgi_pass php-handler;
     }

     # Optional: set long EXPIRES header on static assets
     location ~* \.(?:jpg|jpeg|gif|bmp|ico|png|css|js|swf)$ {
             expires 30d;
             # Optional: Don't log access to assets
             access_log off;
     }

}

当我重新启动nginx服务器并输入地址https://mytestsite.com时,它说

mytestsite.com页面无效 mytestsite.com重定向了你太多次了。

我已经尝试清除缓存和Cookie,但它仍然是相同的。

任何人都可以告诉我conf文件有什么问题吗? 提前谢谢。

1 个答案:

答案 0 :(得分:1)

删除此行

return 301 https://$server_name$request_uri;

并在magento管理面板上设置不安全和安全的链接(系统>配置> Web)

Base URL            = https://mytestsite.com
Base Link URL       = https://mytestsite.com
Base Skin URL       = https://mytestsite.com
Base Media URL      = https://mytestsite.com
Base JavaScript URL = https://mytestsite.com