2017-01-03 80 views
0

我在本地主机上运行一个magento网站,并希望将其重定向到https,以便服务人员可以注册。我的conf文件将本地主机重定向到https nginx magento

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重定向你太多次。

我试过清除缓存和饼干,但它仍然是一样的。

谁能告诉我conf文件有什么问题吗? 在此先感谢。

回答

1

删除此行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 
+0

感谢上

return 301 https://$server_name$request_uri;

,并设置不安全和安全的链接....得到它虽然工作.. ..找到了一条出路......但我感谢你的帮助。 –