Nginx配置文件详解

#主模块指令,指定Nginx Worker进程运行用户以及用户组,默认由nobody账号运行
#user  nobody;

#主模块指令,指定了Nginx要开启的进程数,每个Nginx进程平均耗费10M~12M内存,建议指定和CPU的数量一致即可
worker_processes  1;

#主模块指令,用来定义全局错误日志文件,日志输出级别有debug、info、notice、warn、error、crit可供选择,其中debug输出日志最为详细,crit输出日志最少
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#主模块指令,用来指定进程pid的存储文件位置
#pid        logs/nginx.pid;

#事件指令是设定Nginx的工作模式及连接数上限
events {
    #事件模块指令,用于定义Nginx每个进程的最大连接数,默认是1024
    worker_connections  1024;
}


http {
    #主模块指令,实现对配置文件所包含的文件的设定,可以减少主配置文件的复杂度
    include       mime.types;

    #HTTP核心模块指令,这里设定默认类型为二进制流,也就是当文件类型未定义时使用这种方式
    default_type  application/octet-stream;

    #Nginx的HttpLog模块指令,用于指定Nginx日志的输出格式,main为此日志输出格式的名称,可以在下面的access_log指令中引用
    #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  logs/access.log  main;

    #用于开启搞笑文件传输模式,将tcp_nopush和tcp_nodelay两个指令设置为on用于防止网络阻塞
    sendfile        on;
    #tcp_nopush     on;

    #设置客户端连接保持活动的超时时间,在超过这个时间之后,服务器会关闭该连接
    #keepalive_timeout  0;
    keepalive_timeout  65;

    #用于设置开启或关闭gzip模式,“gzip on”表示开启gzip压缩,实时压缩输出数据流
    #gzip  on;

    #标志定义虚拟主机开始
    server {
    	#用于指定虚拟主机的服务端口
        listen       80;

	#用来指定IP地址或者域名,多个域名之间用空格分开
        server_name  localhost;

	#用于设置网页的默认编码格式
        #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 ssl;
    #    server_name  localhost;

    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_cache    shared:SSL:1m;
    #    ssl_session_timeout  5m;

    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers  on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}

你可能感兴趣的:(nginx)