主配置文件
/etc/nginx/nginx.conf为主配置文件,主配置文件,配置文件必须以;
结尾
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| worker_processes 1; #全局快 events { # events块 worker_connections 1024; } http { #http块 include mime.types; # 加载MIME类型配置文件 default_type application/octet-stream; sendfile on; keepalive_timeout 65; server { # server块 listen 80; server_name localhost; location / { #localtion块 root html; index index.html index.htm; } error_page 500 502 503 504 /50x.html; location = /50x.html { #localtion块 root html; } } }
|
- 全局块:配置文件从开始到events块之间的,通常包括worker process数、nginx进程PID的存放路径、日志存放路径
- events块:主要影响nginx服务器与用户的网络连接,对nginx服务器性能影响对较大。
- http块:代理、缓存、日志定义等,可以嵌套server块、location块
- server块:每一个server块相当于一台虚拟主机,端口、域名、根目录、错误页面
- location块:定义针对特定URL路径的处理规则,位于server块内部,可以根据路径匹配规则进行反向代理、静态文件服务
- stream:配置TCP/UDP的代理设置
- mail:配置邮件代理
1 2 3 4 5 6 7
| 全局块 └── events块 └── http块 └── server块 └── location块 └── mail块(可选) └── stream块(可选)
|
配置讲解
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 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
worker_processes auto
worker_rlimit_nofile 10240
events { worker_connections 1024
use epoll }
http { include mime.types
default_type application/octet-stream
access_log /var/log/nginx/access.log main
sendfile on
sendfile_max_chunk 1m
tcp_nopush on
keepalive_timeout 65
gzip on gzip_types text/plain application/x-javascript text/css application/xml text/javascript application/json gzip_comp_level 6
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=my_cache:10m max_size=1g inactive=60m use_temp_path=off
limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s
server { listen 80
server_name localhost
location / { root html index index.html index.htm }
error_page 500 502 503 504 /50x.html location = /50x.html { root html }
} }
|