博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx作为tcp代理 虚拟主机配置 模板
阅读量:6823 次
发布时间:2019-06-26

本文共 874 字,大约阅读时间需要 2 分钟。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# tcp协议虚拟主机的配置文件模板
# cat  /usr/local/nginx/conf/tcp/tcp.test.com.conf 
user nginx; 
worker_processes  auto;
worker_rlimit_nofile 102400;
 
error_log  
/data0/log/tcp
.
test
.com.error.log info;
 
events {
    
use epoll;
    
worker_connections 25600;
}
 
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  
/data0/log/nginx/tcp
.
test
.com.log  main;
}
 
 
stream {
    
upstream tcp.
test
.com {
        
server   1.1.1.1:61233;
    
}
 
   
server {
        
listen       61233;
        
proxy_pass      tcp.
test
.com;
        
proxy_connect_timeout 10d;
        
proxy_timeout 1d;
        
tcp_nodelay on;
    
}
}
本文转自 wpf926 51CTO博客,原文链接:http://blog.51cto.com/wupengfei/1958142,如需转载请自行联系原作者
你可能感兴趣的文章
PXC搭建
查看>>
tp 内置压缩文件zip
查看>>
FineUI开源版(ASP.Net)开发实践-目录
查看>>
Coding WebIDE 开放支持第三方 Git 仓库
查看>>
java的数据交互方式
查看>>
关于Python的super用法
查看>>
去掉二级页面 tabs 菜单, 修改返回按钮
查看>>
关于性能优化的法则
查看>>
文件遍历升级版
查看>>
【Redis篇】Redis集群安装与初始
查看>>
jquery基础
查看>>
C# 集合已修改;可能无法执行枚举操作
查看>>
FSM Code Generator
查看>>
JDBC学习笔记——事务、存储过程以及批量处理
查看>>
JVM内存结构
查看>>
Java 锁
查看>>
7、索引在什么情况下遵循最左前缀的规则?
查看>>
c#中委托与事件
查看>>
mysql数据库备份之主从同步配置
查看>>
my大众点评作业思路实现:app+跨域+模板引擎+artDialog弹出层+ajax基本增删改查的使用...
查看>>