美文网首页
005-配置文件

005-配置文件

作者: mo371 | 来源:发表于2019-06-05 22:24 被阅读0次
进入nginx的主目录 /etc/nginx/nginx.conf
[root@VM_0_4_centos ~]# cat /etc/nginx/nginx.conf|grep -v "#"|grep -v "^$"
user  nginx;
worker_processes  1;
error_log  /var/log/nginx/error.log warn;
pid        /var/run/nginx.pid;
events {
    worker_connections  1024;
}
http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    access_log  /var/log/nginx/access.log  main;
    sendfile        on;            //开启高效文件传输模式
    keepalive_timeout  65;         //超时时间65S
    include /etc/nginx/conf.d/*.conf;
}

之后我们查看 /etc/nginx/conf.d/default.conf

进入nginx的主目录 /etc/nginx/conf.d/default.conf
[root@VM_0_4_centos ~]# cat /etc/nginx/conf.d/default.conf|grep -v "#"|grep -v "^$"
server {
    listen       80;                                      //监听端口为 80
    server_name  localhost;                               //设置主机域名
    location / {
        root   /usr/share/nginx/html;                   //设置虚拟主机的网站根目录
        index  index.html index.htm;                  //设置虚拟主机默认访问的网页
    }
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
}

相关文章

  • 005-配置文件

  • 20180110初级英语Day55

    Coach Shane's E cubed 补:005- What's up this weekend? 补:00...

  • 【连载】云山乱-目录

    001-蟠龙山 002-龙涎草 003-比胆量 004-困山腹 005-出路显 006-救女婴

  • 005-方向

    The direction.of the tree is determined by the wind. A pe...

  • 005-恐慌

    拥有信仰的人在自己不安的时候,可以向神明祈求帮助,可惜我是无神论者。 我的恐慌来自于三个方面:家,工作和恋人。 首...

  • 005-无题

    第一天开始写文章的时候还大言不惭的说,按照自己的阅读速度,估计四天就可以读完【刻意学习】,现在只能对自己呵呵了。究...

  • 005-文件

    文件操作介绍 文件的概念 文件的作用数据持久化 文件的打开与关闭 生活实例(文件的操作)打开work文档修改数据保...

  • 005-杨树

    记得有段时间,村里流行种树,家里有多余田地的人家,都去种杨树了,等到长大,就能买个好价钱。 我奶奶多聪...

  • [WXOPEN.Club出品] 微信小程序开发视频教程-005-

    005-第一章第五节-模块化 课程配套的源代码地址:https://github.com/ParryQiu/wxo...

  • Python笔记005-神奇的+=

    Python笔记005-神奇的+= 以下是我学习《流畅的Python》后的个人笔记,现在拿出来和大家共享,希望能帮...

网友评论

      本文标题:005-配置文件

      本文链接:https://www.haomeiwen.com/subject/npdexctx.html