Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Nginx acts as tcp agent

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/02 Report--

User nginx;worker_processes auto;error_log / var/log/nginx/error.log;pid / run/nginx.pid;# Load dynamic modules. See / usr/share/nginx/README.dynamic.include / usr/share/nginx/modules/*.conf;events {worker_connections 1024 } http {log_format main'$remote_addr-$remote_user [$time_local] "$http_host"$request"''$status $body_bytes_sent "$http_referer"'"$http_user_agent" $http_x_forwarded_for''"$upstream_addr"$upstream_status"$upstream_response_time"$request_time"' Access_log / etc/nginx/logs/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 } stream {upstream tcp_proxy {hash $remote_addr consistent; # remote address do a hash server slbIP:80;} upstream tcp_proxy_443 {hash $remote_addr consistent; # remote address do a hash server slbIP:443;} server {# listen [:]: 80; listen 80; proxy_connect_timeout 1s; proxy_timeout 10s # backend connection timeout proxy_pass tcp_proxy;} server {# listen [:]: 443; listen 443; proxy_connect_timeout 1s; proxy_timeout 10s; # backend connection timeout proxy_pass tcp_proxy_443;}}

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report