美文网首页
nginx 配置文件nginx.conf讲解

nginx 配置文件nginx.conf讲解

作者: leo_xl | 来源:发表于2018-12-03 11:48 被阅读0次

    1、user nginx;运行用户,默认都是nginx

    2、worker_processes 1; 进程数,如果是双核电脑就写2,如果是8核就写8,有利于处理高并发

    3、error_log; 错误日志存放位置

    4、pid;nignx存放pid的位置路径

    5、events {
            workder_connections 1024;       //后台允许最多并发数
         }

    6、http{
            include  // 文件扩展名与类型映射表
            default_type  // 默认文件类型
            log_format mian  // 设置日志模式
            access_log // 访问日志存放位置
            sendfile  // 开启高速传输模式
            tcp_nopush // 减少网络报文数量
            keepalive_timeout // 保持连接时间,即超时时间
            gzip // html传输内容压缩
            include // 包含子配置文件项的位置
    }
    7、include 下配置子配置文件项:
    server {
        listen 80; // 监听端口
        server_name localhost;// 服务器域名
        location / {
            root /usr/share/nginx/html; // 网站根目录
            index index.html index.htm; // 哪些文件会被启用
        }
        error_page 500 502 503 504 /50x.html;  // 错误代码默认开启错误页面
        error_page 404 404_error.html;
    }

    相关文章

      网友评论

          本文标题:nginx 配置文件nginx.conf讲解

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