私はstartssl認証でhttpsに私のウェブサイトをアップグレードします。 しかし、サファリは、startssl認定を不信にしています。 これはhttpで、UserAgentにiPhone/iPadがない場合、nginxをhttpsにリダイレクトすることを検討します(つまり、他のブラウザは301からhttpsになります)。 これは私が試したものです:Nginxの設定:iPhone/iPadでない場合、301へのリダイレクト
server {
listen 80;
listen 443 ssl;
server_name abc.com alias abc.com;
ssl_certificate D:\cert\1_abc.com_bundle.crt;
ssl_certificate_key D:\cert\abc.com.key;
ssl_session_timeout 5m;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_prefer_server_ciphers on;
if ($scheme = http) && if ($http_user_agent !~* iPhone|iPad) {
return 301 https://$host$request_uri;
}
location/{
root D:/www;
index index.html index.htm default.html default.htm index.php;
include D:/www/up-*.conf;
}
======== OR ==========
if ($scheme = http && $http_user_agent !~* iPhone|iPad)
======== OR ==========
しかし、どちらも効果はありません。