Nginx 常用模块
ngx_http_proxy_module 模块
location / {
proxy_pass http://localhost:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}proxy_pass
proxy_set_header
proxy_set_header Host $proxy_host;
proxy_set_header Connection close;ngx_http_upstream_module 模块
upstream
server
hash
ip_hash
least_conn
least_time
random
ngx_http_log_module 模块
access_log
log_format
最后更新于