美文网首页
Nginx教程2-配置文件

Nginx教程2-配置文件

作者: 夜半暖人心 | 来源:发表于2019-08-01 22:26 被阅读0次

1.主要配置文件及介绍

Ⅰ.nginx的安装目录

Snipaste_2019-10-26_15-36-13.png

Ⅱ.nginx.conf总配置文件解读: vim nginx.conf 打开文件

# 运行用户,默认是nginx,可以不进行设置     
user  nginx;
#Nginx进程,一般设置和cpu核数一样
worker_processes  1;

#错误日志存放位置
error_log  /var/log/nginx/error.log warn;
#进程pid存放位置
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;#nginx访问日志的存放位置

    sendfile        off;#是否开启高效传输模式 on开启 off关闭
    #tcp_nopush     on;#减少网络报文段的数量

    keepalive_timeout  65; #保持连接的时间,也叫超时时间

    #gzip  on;#开启gzip压缩模式

    include /etc/nginx/conf.d/*.conf;#包含的子配置项的位置和文件
}

2.子配置文件及介绍

Ⅰ.default.conf子配置文件解读

如果在腾讯云centos7上直接安装nginx,会发现没有该配置文件,请回到教程1,重装系统后再自行配置yum源下载,单是卸载还会有nginx残留配置

Snipaste_2019-10-27_15-07-43.png
server {
    listen       80;   #配置监听端口
    server_name  localhost;  //配置域名
    #charset koi8-r;     
    #access_log  /var/log/nginx/host.access.log  main;
    location / {
        root   /usr/share/nginx/html;     #服务默认启动目录
        index  index.html index.htm;    #默认访问文件
    }
    #error_page  404              /404.html;   # 配置404页面
    # redirect server error pages to the static page /50x.html
    #
    error_page   500 502 503 504  /50x.html;   #错误状态码的显示页面,配置后需要重启
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
    # proxy the PHP scripts to Apache listening on 127.0.0.1:80
    #
    #location ~ \.php$ {
    #    proxy_pass   http://127.0.0.1;
    #}
    # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
    #
    #location ~ \.php$ {
    #    root           html;
    #    fastcgi_pass   127.0.0.1:9000;
    #    fastcgi_index  index.php;
    #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
    #    include        fastcgi_params;
    #}
    # deny access to .htaccess files, if Apache's document root
    # concurs with nginx's one
    #
    #location ~ /\.ht {
    #    deny  all;
    #}
}

Ⅱ.网站根目录

Snipaste_2019-10-27_10-35-13.png

相关文章

  • Nginx教程2-配置文件

    1.主要配置文件及介绍 Ⅰ.nginx的安装目录 Ⅱ.nginx.conf总配置文件解读: vim nginx.c...

  • Docker-nginx篇

    docker中添加nginx容器。 下载nginx镜像仓库 查看官方教程 创建nginx容器 复制配置文件到宿主机...

  • nginx分析默认配置(5)

    获取全套nginx教程,请访问瓦力博客 为nginx主配置文件添加注释,更好的理解nginx nginx的默认加载...

  • Nginx教程(入门篇)

    目录一、认识配置文件二、启动、停止、重启服务器三、常用设置 系列教程Nginx教程(初识篇) 一、认识配置文件 (...

  • 第二讲 Nginx模块详解

    本章要点 Nginx 配置文件结构 各个模块的详解 2.1 Nginx配置文件结构 Nginx的配置文件nginx...

  • Nginx配置文件详解

    Nginx配置文件nginx.conf详解 nginx.conf nginx技术一--配置文件nginx.conf...

  • 应用程序常用命令

    nginx: nginx启动:nginx -c nginx配置文件地址检查配置文件是否正确:nginx -t重启n...

  • nginx(五)nginx cmd

    nginx cmd 1、启动nginx start nginx 2、修改配置文件并生效 测试nginx配置文件是否...

  • Nginx配置文件nginx.conf详解和nginx的变量规则

    Nginx配置文件nginx.conf详解 Nginx 总的 配置文件 位置 /usr/local/nginx/c...

  • Nginx使用

    Nginx [toc] nginx命令 参数 Nginx启动 通过指定配置文件启动 配置文件语法检查 Nginx配...

网友评论

      本文标题:Nginx教程2-配置文件

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