nginx stream 모듈 의 응용

2143 단어
더 읽 기
nginx 는 역방향 프 록 시 서버 로 서 보통 7 층 네트워크 프 록 시 를 위주 로 하고 특수 한 상황 에서 도 4 층 네트워크 프 록 시 를 진행 하여 이른바 투과 를 실현 할 수 있 습 니 다. 다음은 인 스 턴 스 입 니 다.


user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

include /usr/share/nginx/modules/*.conf;

events {
    worker_connections 1024;
}

stream {
    upstream localhost-443 {
    server 127.0.0.1:{{grafana_web_port}};
    }
    server {
        listen 443  ;
        proxy_pass localhost-443;
    }
}

http {
    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  /var/log/nginx/access.log  main;

    sendfile            on;
    tcp_nopush          on;
    tcp_nodelay         on;
    keepalive_timeout   65;
    types_hash_max_size 2048;

    include             /etc/nginx/mime.types;
    default_type        application/octet-stream;

    include /etc/nginx/conf.d/*.conf;
    
    upstream platform-t{
         server 127.0.0.1:8443;
    }
    server {
        listen       444 ;
        server_name  _;
        root         /usr/share/nginx/html;
        index index.html index.htm;
        ssl on;
        ssl_certificate  /opt/cert/server.crt; 
        ssl_certificate_key  /opt/cert/server.key;

        # Load configuration files for the default server block.

        location /profile {
           proxy_pass https://platform-t;
        }

        error_page 404 /404.html;
            location = /40x.html {
        }

        error_page 500 502 503 504 /50x.html;
            location = /50x.html {
        }
    }


}



좋은 웹페이지 즐겨찾기