博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在nginx配置文件中删除了index.php就报错
阅读量:5943 次
发布时间:2019-06-19

本文共 1626 字,大约阅读时间需要 5 分钟。

hot3.png

[root@izkbs00av8xzccz conf.d]# systemctl restart nginx

Job for nginx.service failed because the control process exited with error code. See "systemctl status nginx.service" and "journalctl -xe" for details.

[root@izkbs00av8xzccz conf.d]# vim default.conf

###################### Default ################################

server
{
    listen 80 default_server;
    server_name www.mydomain.com mydomain.com;
    index index.html index.htm index.php; #此行我去掉了index.php 和前面的index就出现报错
    root  /data/wwwroot/default;
    error_log /var/log/nginx/default-error.log crit;

    location ~ .*\.php$

    {
        fastcgi_pass  unix:/dev/shm/php-fpm-default.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME  $document_root$fastcgi_script_name;
        include fastcgi_params;
        try_files $uri = 404;
    }

    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp3|wma|mp4|ico)$

    {
        expires      30d;
        access_log off;
    }

    location ~ .*\.(js|css)$

    {
        expires      7d;
        access_log off;
    }

    location ~* \.(ftpquota|htaccess|htpasswd|asp|aspx|jsp|asa|mdb)?$ {

        deny all;
    }

################################ SSL #########################################

#listen 443 ssl;
#ssl on;
#ssl_certificate /data/cert/xxx.crt;
#ssl_certificate_key /data/cert/xxx.key
#ssl_session_timeout 5m;
#ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
#ssl_prefer_server_ciphers
## 301 重定向 http => https
#if ( != "https") {
#return 301 https://;
#}
############################### extra ########################################
     include /etc/nginx/conf.d/extra/*.conf;
}

[root@izkbs00av8xzccz conf.d]# systemctl restart nginx #正确

转载于:https://my.oschina.net/botkenni/blog/1603193

你可能感兴趣的文章
activemq高级客户端选项
查看>>
MySQL中TIMESTAMPDIFF和TIMESTAMPADD函数
查看>>
<转>用PHP开发企业Wifi网络Web认证系统(附源码)
查看>>
WePY框架开发的小程序如何在微信web开发者工具中运行起来
查看>>
No result for action XX.action and result error 错误处理
查看>>
UILabel 使用 标签,圆角,富文本
查看>>
oracle archivelog模式与非archivelog模式转换
查看>>
source insight快捷键及使用技巧
查看>>
西霞口船业公司疑遭外商合谋欺诈
查看>>
Java 枚举
查看>>
一段经典的js命名空间创建和链式调用代码
查看>>
Java实现队列 && 链式存储结构
查看>>
Akka 接收消息超时的处理_Receive Timeout
查看>>
Scala Implicit Conversion
查看>>
为什么要使用符号作为hash的键
查看>>
我的友情链接
查看>>
YII
查看>>
RabbitMQ学习总结(5)——发布和订阅实例详解
查看>>
QT开发(六十四)——QT样式表(二)
查看>>
MyBatis学习总结(五)——实现关联表查询
查看>>