Nginx 配置文件注释

本文深入探讨了Nginx配置文件的结构和语法,包括服务器块、location指令、反向代理、负载均衡等关键设置。通过实例解析,帮助读者理解如何优化Nginx以提升网站性能和稳定性。
#user  nobody;
#这个一般跟cpu的核数有关  4核 8线程  这里就配置8
worker_processes  1;

#表示的是全局的异常放置的地方
#error_log  logs/error.log;
#也是全局错误存放的地方   notice:表示的是输出日志的格式(这里一般情况下不用改变)
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#进程号存放的地方(进程号的主要作用是用来 从启、关闭这些命令用的)
#pid        logs/nginx.pid;


#最大连接数(这个跟硬件也有关系)
events {
    worker_connections  1024;
}


#配置最多的就是在HTPP里面
http {
    #包含的这种类型(nginx支持的数据类型)
    include       mime.types;
    #默认的这个传输的数据类型 
    default_type  application/octet-stream;
    
    #定义了名字为main的这种数据格式
    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                      '$status $body_bytes_sent "$http_referer" '
                      '"$http_user_agent" "$http_x_forwarded_for"';
    #局部请求日志存放的地方  main格式
    access_log  logs/access.log  main;
   
    #表示的是是否可以发送文件  on:打开
    sendfile        on;
    #tcp_nopush     on;

    #keepalived连接的超时时间
    #keepalive_timeout  0;
    keepalive_timeout  65;

    #默认的压缩格式
    #gzip  on;
   
     server{

       listen 9090;
       server_name localhost;

       location /{
         root bobo;
         index bobo.html;
       }

    }
    #虚拟了一个服务

    server {
        #这个是服务的监听端口
        listen       80;
        #服务的名字
        server_name  localhost;
        
        #默认的编码格式
        #charset koi8-r;
        #80这个请求的日志存放的地方
        #access_log  logs/host.access.log  main;
        
        #定义的映射规则   10.7.182.79:80/
        location / {
            #表示你如果当前路径是根路径下的 / 的话  那么会自动的访问到 根目录下的 html文件中去
            root   html;
            #而且访问的是html文件中的  index.htm index.html
            index  index.html index.htm;
        }

        #出现404的时候 访问的页面
        #error_page  404              /404.html;

        #表示出现 500 502 503 504的时候访问的htnml
        # 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;
    #    }
    #}

}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值