博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx代理配置文件模板示例
阅读量:6805 次
发布时间:2019-06-26

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

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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# 4核8g机器的nginx代理配置
# vim /usr/local/nginx/conf/nginx.conf
user  nginx;
worker_processes  8;
worker_rlimit_nofile 102400;
 
error_log  
/data0/log/nginx/error
.log  notice;
 
pid        
/data0/log/nginx/nginx
.pid;
 
 
events {
    
use epoll;
    
worker_connections  65535;
}
 
 
http {
    
include       mime.types;
    
default_type  application
/octet-stream
;
 
    
log_format  nginx_log  
'$remote_addr - $remote_user [$time_local] "$request" '
                      
'$status $body_bytes_sent "$http_referer" '
                      
'"$http_user_agent" "$http_x_forwarded_for"'
;
 
 
    
client_max_body_size 50m;
    
client_body_buffer_size   256k;
    
client_header_timeout 120s;
    
client_body_timeout 120s;
    
send_timeout 1m; 
    
    
sendfile        on;
    
keepalive_timeout  120;
 
    
proxy_ignore_client_abort on;
    
proxy_connect_timeout 600;
    
proxy_read_timeout 600;
    
proxy_send_timeout 600;
    
proxy_buffer_size 32k;
    
proxy_buffers 8 128k;
    
proxy_busy_buffers_size 128k;
    
proxy_temp_file_write_size 512k;
     
    
gzip  
on;
    
server {
        
listen 80 default_server;
        
server_name _;
        
return 
404;
    
}
 
include vhosts/*.conf;
}
本文转自 wpf926 51CTO博客,原文链接:http://blog.51cto.com/wupengfei/1958131,如需转载请自行联系原作者
你可能感兴趣的文章
方法代码ASP.NET MVC如何使用Ajax的辅助方法
查看>>
c++引用详解
查看>>
Senparc.Weixin SDK 微信公众号 .NET 开发教程 索引
查看>>
Android SDK Permission大全访问权限
查看>>
sicp第一章部分习题解答
查看>>
异步委托与多线程
查看>>
nullnullvc中加花
查看>>
索引测试代码
查看>>
广度优先搜索nodeHDU/HDOJ 1242 Rescue 典型的迷宫广度优先搜索题
查看>>
多注入
查看>>
iPhone App开发实战手册学习笔记(5)之IOS常用机制
查看>>
Git 使用
查看>>
php正则
查看>>
用长按键重复输入 - Mac OS X Lion
查看>>
thinkphp 语言包丢失
查看>>
.net的XML对象序列化VS WCF中xml序列化问题
查看>>
基于JSP+SERVLET的新闻发布系统(一)
查看>>
jquery左边滚动,完毕后跳转回来
查看>>
ubuntu12 环境下编译freerdp
查看>>
[置顶] Bug 11775332 - cluvfy fails with PRVF-5636 with DNS response timeout error [ID 11775332.8]
查看>>