繁体   English   中英

将本地主机重定向到https nginx magento

[英]Redirect localhost to https nginx magento

我正在本地主机上运行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文件怎么了? 提前致谢。

删除这行

return 301 https://$server_name$request_uri;

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

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

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM