我的nginx.conf
文件有:
server {
listen 80;
listen 443;
server_name www.mysite.com;
#charset koi8-r;
#access_log /var/log/nginx/host.access.log main;
root /var/www/mysite/current;
index index.html index.php;
location ~* \.(ico|css|js|gif|jpe?g|png)(\?[0-9]+)?$ {
expires max;
log_not_found off;
}
location / {
try_files $uri $uri/ /index.php;
}
location ~* \.php$ {
fastcgi_pass 127.0.0.1:9000;
include fastcgi.conf;
}
}
这可行,但不会在端口 443 上执行 SSL。知道为什么不行吗?
答案1
您尚未设置ssl_certificate
或ssl_certificate_key
,我认为这是实际使用 SSL 所必需的。如果您没有 CA 颁发的证书,则可以使用自签名证书。