• nginx.conf 文中描述的配置文件


    ###############################nginx.conf 件里文说明
    #user  nobody;                  # user 主模块指令,指令nginx worker 执行用户和用户组(user xxxuser xxxgroup) 。默认由nobody执行
    worker_processes  1;            # worker_processes 主模块指令,指令nginx执行进程数,每一个进程平均耗10m-12m内存,单核为1,多核为n
    
    #error_log  logs/error.log;     # 全局日志 输出级别debug,info,notice,warn,error,crit ,当中debug输出日志最为具体
    #error_log  logs/error.log  notice; #级别 notice
    #error_log  logs/error.log  info;   #级别 info
    
    #pid        logs/nginx.pid;     #pid 指令  指定进程id存储位置
    
    
    events {
        worker_connections  1024;   #events 指令 指令nginx 工作模式和连接数上限
    }
    
    
    http {                                  #http服务器配置
        include       mime.types;           #包括文件mime.types
        default_type  application/octet-stream;  #默觉得二进制流
    
        #日志格式的设定
        #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  #HttpLog模块指令,日志输出格式。main为日志名称,能够在access_log指令引用
        #                  '$status $body_bytes_sent "$http_referer" '
        #                  '"$http_user_agent" "$http_x_forwarded_for"';
        
    
        #access_log  logs/access.log  main;
    
        sendfile        on;   #高效文件传输模式,将tcp_nopush和tcp_nodely设置为on
        #tcp_nopush     on;
    
        #keepalive_timeout  0;  #client连接保持活动的超时时间,超时后关闭连接
        keepalive_timeout  65;       
    
        #gzip  on;  #开启gzip压缩  实时压缩输出数据流
    
        #server虚拟主机配置
        server {
            listen       80;  #端口
            server_name  localhost; #ip或域名,能够多个www.abc.com,127.0.0.1
    
            #charset koi8-r;   #编码格式
    
            #access_log  logs/host.access.log  main;   #虚拟主机訪问日志存放路径
    
            location / {
                root   html;
                index  index.html index.htm;
            }
    
            #error_page  404              /404.html;
    
            # redirect server error pages to the static page /50x.html
            #
            error_page   500 502 503 504  /50x.html;
            location = /50x.html {
                root   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;
            #}
        }
    
    
        # another virtual host using mix of IP-, name-, and port-based configuration
        #
        #server {
        #    listen       8000;
        #    listen       somename:8080;
        #    server_name  somename  alias  another.alias;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    
        # HTTPS server
        #
        #server {
        #    listen       443;
        #    server_name  localhost;
    
        #    ssl                  on;
        #    ssl_certificate      cert.pem;
        #    ssl_certificate_key  cert.key;
    
        #    ssl_session_timeout  5m;
    
        #    ssl_protocols  SSLv2 SSLv3 TLSv1;
        #    ssl_ciphers  HIGH:!aNULL:!MD5;
        #    ssl_prefer_server_ciphers   on;
    
        #    location / {
        #        root   html;
        #        index  index.html index.htm;
        #    }
        #}
    
    }
    

    版权声明:本文博客原创文章。博客,未经同意,不得转载。

  • 相关阅读:
    WPF Image控件的Source属性是一个ImageSource对象
    wx:if 与hidden
    切换远程分支
    异步请求(简单一说)
    多维数组降维方法,简单一提
    3.25发版之最后的搜索框
    wepy-城市按字母排序
    new一个新对象。。。对象???
    参数函数是对象的理解
    群辉 MariaDB 10 远程连接
  • 原文地址:https://www.cnblogs.com/lcchuguo/p/4612306.html
Copyright © 2020-2023  润新知