nginx
- nginx 配置详细介绍
# 运行用户
user nobody;
# 工作进程数量,一般设为与 CPU 数量相等
worker_processes 1;
# 全局错误日志
error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
# pid 文件,记录当前 nginx 的进程 id
pid logs/nginx.pid;
# 工作模式
events {
# 单个工作进程的最大并发连接数
worker_connections 1024;
}
# 设定http服务器,利用它的反向代理功能提供负载均衡支持
http {
# 设定mime类型(邮件支持类型),类型由mime.types文件定义
include mime.types;
# 设定默认的 Content-Type
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 的文件和格式
access_log logs/access.log main;
# 指定 nginx 是否调用 sendfile 函数(zero copy 方式)来输出文件,即零拷贝的方式
# 对于普通应用,必须设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置为 off,以平衡磁盘与网络I/O处理速度,降低系统的uptime
sendfile on;
#tcp_nopush on;
# 保持长连接超时时间
keepalive_timeout 65;
# 是否开启 gzip 压缩
gzip on;
# http 服务器配置
server {
# 监听的端口
listen 80;
# 定义访问的域名
server_name localhost;
# 字符编码
#charset koi8-r;
#access_log logs/host.access.log main;
# 配置域名根路径的访问的目录和默认页面
location / {
root /Users/code/vuepress/release;
index index.html index.htm;
}
#error_page 404 /404.html;
# 处理错误重定向到 /50x.html
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
# 另一个 http 服务器的配置
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS 服务器的配置
#server {
# listen 443 ssl;
# server_name localhost;
# 公钥和私钥的路径文件
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# 使用名为“SSL”的共享内存区域,大小为1兆字节
# ssl_session_cache shared:SSL:1m;
# 指定了SSL会话超时时间,意味着SSL会话信息将在客户端与服务器之间没有活动连接的情况下保留5分钟,并在超过这个时间后过期失效
# ssl_session_timeout 5m;
# 用于指定SSL加密时使用的密码套件,这里的配置表示只使用安全性较高的密码套件,并排除了匿名传输和MD5算法
# ssl_ciphers HIGH:!aNULL:!MD5;
# 用于设置SSL首选项,即让服务器端的加密算法优先级更高
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
include servers/*;
}
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
编辑 (opens new window)
上次更新: 2024/09/18, 15:48:56