zoukankan      html  css  js  c++  java
  • nginx安装

    安装NGINX

    yum install -y gcc openssl-devel pcre-devel
     
    mkdir -p /usr/local/nginx/html
     
    tar -xf tengine-2.1.2.tar.gz
    cd tengine-2.1.2
    ./configure --prefix=/usr/local/nginx --with-http_ssl_module --with-http_stub_status_module
     
    make:
    make install
    

      

    修改配置文件

    #user  ops;
    worker_processes  auto;
    worker_cpu_affinity auto;
     
    error_log  logs/error.log  error;
     
    pid        logs/nginx.pid;
     
    worker_rlimit_nofile 65535;
     
    events {
        use epoll;
        worker_connections  65535;
    }
     
     
    http {
        include       mime.types;
        default_type  application/octet-stream;
        log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                          '$status $body_bytes_sent "$http_referer" '
                          '"$http_user_agent" "$http_x_forwarded_for"';
     
        log_format  json  '{"@timestamp":"$time_iso8601",'
                          '"remote_addr":"$remote_addr",'
                          '"remote_user":"$remote_user",'
                          '"http_host":"$http_host",'
                          '"request":"$request",'
                          '"status":"$status",'
                          '"body_bytes_sent":$body_bytes_sent,'
                          '"http_referer":"$http_referer",'
                          '"http_user_agent":"$http_user_agent",'
                          '"http_x_frowarded_for":"$http_x_forwarded_for",'
                  '"upstream_status":"$upstream_status",'
                          '"upstream_addr":"$upstream_addr",'
                          '"upstream_response_time":"$upstream_response_time",'
                          '"request_time":$request_time}';
     
     
        access_log  logs/access.log  json;
     
        sendfile        on;
        #tcp_nopush     on;
     
        keepalive_timeout  65;
     
        client_header_buffer_size    20m;
        large_client_header_buffers  4 2048k;
        client_max_body_size 20m;
        proxy_buffer_size 64k;
        proxy_buffers   4 32k;
        proxy_busy_buffers_size 64k;
        proxy_temp_file_write_size 64k;
     
        proxy_ignore_client_abort  on;  #让代理服务端不要主动关闭客户端的连接。
     
        gzip  on;
        gzip_min_length 1k;
        gzip_buffers 4 16k;
        gzip_http_version 1.1;
        gzip_comp_level 2;
        gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript image/jpeg image/gif image/png application/javascript;
        gzip_proxied any;
        gzip_disable "MSIE [1-6].";
     
    server {
            listen 80 default;
            server_name _;
            return 499;
            }
     
    include /usr/local/nginx/conf/vhosts/*.conf;
    }
    

      

    添加配置文件xx.conf

    # cd /usr/local/nginx/conf/vhosts/
    # vim xx.conf
    
    upstream xx {
            server ip:port weight=4 max_fails=2 fail_timeout=30s;
            server ip:port weight=4 max_fails=2 fail_timeout=30s;
    }
    
    server {
    	listen  80;
            server_name  _;
            access_log  logs/xx.log json;
    
        location / {
            proxy_pass         http://xx;
            proxy_set_header   Host             $host;
            proxy_set_header   X-Real-IP        $remote_addr;
            proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
            proxy_connect_timeout   10s;
            proxy_send_timeout      150s;
            proxy_read_timeout      150s;
            proxy_next_upstream error timeout invalid_header http_404 http_500 http_502 http_504;
        }
    }
    

      

    启动nginx

    /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
    

      

  • 相关阅读:
    【41】了解隐式接口和编译期多态
    【17】以独立语句将newed对象置入智能指针
    【16】成对使用new和delete时要采取相同形式
    【15】在资源管理类中提供对原始资源的访问
    【14】在资源管理类中小心copying行为
    【02】尽量以const,enum,inline替换#define
    【01】视C++为一个语言联邦
    一次数据库hang住的分析过程
    针对某个数据库error做systemstate dump
    数据库hang住如何收集信息
  • 原文地址:https://www.cnblogs.com/cjsblogs/p/8426140.html
Copyright © 2011-2022 走看看