我正在尝试在 Nginx 上安装 ssl 证书(实际上是 laravel forge)。我已将证书与中间证书连接起来,并且在 Nginx 错误日志中没有收到任何错误。但是,它在移动版 chrome 中不受信任 - 仅适用于台式机。
查看 Qualys ssl 测试,据说该链不完整。我不明白如何。
这是我的 Nginx 配置
server {
listen 80;
server_name **********.com;
return 301 https://**********.com$request_uri;
}
server {
listen 443 ssl;
server_name **********.com;
root /home/forge/**********.com/public;
# FORGE SSL (DO NOT REMOVE!)
ssl on;
ssl_certificate /etc/nginx/ssl/**********.com/1086/server.pem;
ssl_certificate_key /etc/nginx/ssl/**********.com/1086/server.key;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; …Run Code Online (Sandbox Code Playgroud)