2017-01-03 47 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;

,並設置不安全和安全的鏈接....得到它雖然工作.. ..找到了一條出路......但我感謝你的幫助。 –

相關問題