zoukankan      html  css  js  c++  java
  • 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;
        #    }
        #}
    
    }
    

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

  • 相关阅读:
    线程运行boost库在工作(22)任务之二
    vi 帮助文档 man vi
    跳槽关系三国演义告诉我们的60条真理
    后台端口虚拟主机wdcp的相关问题以及解决方法
    格式化字符串android 格式化时间
    对象查询HQL多表联合查询的问题
    myeclipse8.6中svn插件的安装
    乱码解决方法
    Restfull风格是什么意思?
    poj3013
  • 原文地址:https://www.cnblogs.com/lcchuguo/p/4612306.html
Copyright © 2011-2022 走看看