美文网首页想法
nginx(二)配置文件

nginx(二)配置文件

作者: zhangxiaohao | 来源:发表于2019-07-06 00:12 被阅读0次
    pwd
    /usr/local/nginx  #当前为nginx目录
    vim conf/nginx.conf  #查年配置文件
    

    以下为配置文件中的内容:

    user nobody;   #启动用户
    worker_processes 1;   #工作进程与cpu核数有关
    
    error_log logs/error.log ; #全局错误日志或格式,以下两句也是同理。
    #error_log logs/error.log notic; #notic为格式
    #error_log logs/error.log info;
    pid  logs/ngnix.pid  #存进程id文件
    events{
          worker_connections 1024;   #每个工作进程并发数
          }
    
    http{
         include mime.types;  #mime类型,多用途互联网邮件扩展。
         default_type  application/octet-stream;#mime下子类型
         #日志格式 #main是日志的名字
        log_format  main     '$remote_addr - $remote_user [$time_local]     "$request" ' 
                    '$status $body_bytes_sent "$http_referer" '
                    '"$http_user_agent" "$http_x_forwarded_for"';
        #$remote_addr与$http_x_forwarded_for用以记录客户端的ip地址;
        #$remote_user:用来记录客户端用户名称;
        #$time_local: 用来记录访问时间与时区;
       #$request: 用来记录请求的url与http协议;
        #$status: 用来记录请求状态;成功是200,
        #$body_bytes_sent :记录发送给客户端文件主体内容大小;
        #$http_referer:用来记录从那个页面链接访问过来的;
        #$http_user_agent:记录客户浏览器的相关信息;
    
       access_log  /logs/access.log  main; #全局访问日志路径  main是前面指定的格式名main
       sendfile on;     
     #sendfile指令指定 nginx 是否调用sendfile 函数(zero copy 方式)来输出文件,对于普通应用,必须设为on。
    #如果用来进行下载等应用磁盘IO重负载应用,可设置为off,
    #以平衡磁盘与网络IO处理速度,降低系统uptime。
    tcp_nopush on; #此选项允许或禁止使用socke的TCP_CORK的选项,此选项仅在使用sendfile的时候使用
        #keepalive_timeout  0;
        keepalive_timeout  65; #长连接超时时间
       gzip on;   #开启压缩
    server {  #配置虚拟主机
         listen 80;#虚拟主机使用的端口
         server_name localhost; #虚拟主机域名
         #charset koi8-r;#虚拟主机支持的字符集
         #access_log  logs/host.access.log  main;  #虚拟主机的访问日志路径
    location / { 
           root html; #定义web根路径
           index index.html index.htm;   #索引页
       }
     error_page 404  /404.html #404对应显示的页面
     erro_page 500 502 503 504  /50x.html;#50x对应显示的页面
    location = /50x.html{
       root html;
    }
    
            #定义反向代理服务器 数据服务器是lamp模型
            # proxy the PHP scripts to Apache listening on 127.0.0.1:80
            #
            #location ~ \.php$ {
            #    proxy_pass   http://127.0.0.1;
            #}
            #定义PHP为本机服务的模型  
            # 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
            #
            #拒绝nginx DR目录及子目录下的.htaccess文件访问
            #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的配置方案
        # 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(二)配置文件

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