Nginx ssl设置后自动下载根目录的index.php而不是载入

碰到了一个奇怪的小白问题,通过如下配置在nginx上配置ssl后,用https访问主页的话,浏览器直接下载index.php,而不是载入index.php,nginx启动无报错还请各位高手指教,多谢。
server
{
root/var/www/html;
indexindex.htmlindex.htmindex.php;
listen443;
server_namelocalhost;
sslon;
ssl_certificatea.crt;
ssl_certificate_keya.key;
ssl_session_timeout10m;
ssl_session_cacheshared:SSL:10m;
ssl_protocolsTLSv1TLSv1.1TLSv1.2;
ssl_ciphersALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+EXP;
ssl_prefer_server_cipherson;
}
芜湖不芜
浏览 1317回答 2
2回答

慕标5832272

和SSL没有关系,请确认:这个请求的确匹配到了这个server而不是别的这个server的配置的其他部分指明了如何处理.php文件(发往php-fpm)

冉冉说

继续顶。。。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript