美文网首页
nginx tcp转发

nginx tcp转发

作者: __Liu__ | 来源:发表于2018-08-14 11:39 被阅读0次

    ./configure --prefix=/home/ocdc/nginx --sbin-path=/home/ocdc/nginx/sbin/nginx --conf-path=/home/ocdc/nginx/conf/nginx.conf --with-stream
    make
    make install

    user ocdc;

    worker_processes 1;

    error_log logs/error.log;

    error_log logs/error.log notice;

    error_log logs/error.log info;

    pid logs/nginx.pid;

    events {
    worker_connections 1024;
    }

    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"';
    
    #access_log  logs/access.log  main;
    
    sendfile        on;
    #tcp_nopush     on;
    
    #keepalive_timeout  0;
    keepalive_timeout  65;
    
    #gzip  on;
    

    }

    stream{

    upstream oracle {
        server 10.25.176.208:1521;
    }
    
    server {
        listen 8080;
        proxy_pass oracle;
    }
    

    }

    相关文章

      网友评论

          本文标题:nginx tcp转发

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