nginx中文文档:http://www.nginx.cn/doc/
官网:https://www.nginx.com/resources/wiki/start/
nginx简单介绍:https://www.cnblogs.com/wcwnina/p/8728391.html
正向代理:代理服务器在 客户端(访问谷歌,服务器在公网上)
反向代理:代理服务器在 服务端(服务器将访问代理到多台机器上)
作为代理服务器(请求转发)
存储静态文件
1 下载
apt install nginx
2 基础命令
nginx -s stop/quit/reload/reopen :立即停止/执行后通知/重新加载配置文件/重新打开日志文件
nginx -c [config_path]:为nginx指定配置文件(代替缺省)
nginx -t:不运行,测试配置文件正确性
nginx -v:显示nginx的版本
nginx -V:显示nginx的版本,编译器版本,配置参数(配置文件/日志文件/pid文件路径等)
3 配置文件参数
完整配置:
user www www; ## Default: nobody
worker_processes 5; ## Default: 1
error_log logs/error.log;
pid logs/nginx.pid;
worker_rlimit_nofile 8192;
events {
worker_connections 4096; ## Default: 1024
}
http {
include conf/mime.types;
include /etc/nginx/proxy.conf;
include /etc/nginx/fastcgi.conf;
index index.html index.htm index.php;
default_type application/octet-stream;
log_format main '$remote_addr - $remote_user [$time_local] $status '
'"$request" $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log logs/access.log main;
sendfile on;
tcp_nopush on;
server_names_hash_bucket_size 128; # this seems to be required for some vhosts
server { # php/fastcgi
listen 80;
server_name domain1.com www.domain1.com;
access_log logs/domain1.access.log main;
root html;
location ~ \.php$ {
fastcgi_pass 127.0.0.1:1025;
}
}
server { # simple reverse-proxy
listen 80;
server_name domain2.com www.domain2.com;
access_log logs/domain2.access.log main;
# serve static files
location ~ ^/(images|javascript|js|css|flash|media|static)/ {
root /var/www/virtual/big.server.com/htdocs;
expires 30d;
}
# pass requests for dynamic content to rails/turbogears/zope, et al
location / {
proxy_pass http://127.0.0.1:8080;
}
}
upstream big_server_com {
server 127.0.0.3:8000 weight=5;
server 127.0.0.3:8001 weight=5;
server 192.168.0.1:8000;
server 192.168.0.1:8001;
}
server { # simple load balancing
listen 80;
server_name big.server.com;
access_log logs/big.server.access.log main;
location / {
proxy_pass http://big_server_com;
}
}
}
守护进程: daemon on/off;默认on(调试或研究nginx架构时会关闭守护进程模式)
以master/worker方式工作:master_process on/off;默认on (on:master管理work,不参与处理请求,off:master进程处理请求。最优的是:每个worker节点单独分配一个cpu内核(16核cpu,每个worker绑定其中一个))
error日志:error_log logs/error.log
嵌入其它配置文件:include path_file
指定pid文件路径:pid path/file 默认:pid logs/nginx.pid 或者 run/nginx.pid
指定worker进程运行的用户/用户组:user username 默认 user nobody
指定worker进程可以打开的最大句柄描述符个数:worker_rlimit_nofile 8192
限制信号队列:worker_rlimit_sigpending 102(单个用户发往nginx的信号队列的大小)
设置worker进程个数:worker_processes 4
设置cpu的内核绑定:worker_cpu_affinity 1000 0100 0010 0001
设置worker进程静态优先级:worker_priority -5 (取值-20~19 越低优先级越高,一般不能高于内核进程的优先级(通常是-5))
http中的模块:
server:(每个server就是一个虚拟主机,处理对应的域名请求————一台主机就能不同主机域名的HTTP请求)
监听端口:listen 80
主机/域名名称(可用*匹配符,可以配多个):server_name www.123.com www.234.com;
设置每个散列桶内存大小(Nginx使用散列表存储server name):server_names_hash_bucket_size 32/64/128
重定向主机名称的处理:server_name_in_redirect on/off (默认on:重定向请求会使用server_name配置的第一个主机名代替请求中的Host头部 off:使用请求本身的Host头部)
location:匹配请求的uri
规则:
~ 匹配URI时字母大小写敏感
~* 匹配URI时忽略字母大小写问题
^~ 匹配URI时只需要前半部分与yri参数匹配
= 把URI当作字符串,用于于参数中的uri完全匹配
支持正则表达式:~* \.(gif|jpg|jpeg)$ 匹配以.gif .jpg .jpeg结尾的请求
定义请求文件路径:
roof path (例如 roof html;当location匹配down,请求down/index.html 服务器会返回html/down/index.html文件内容)
alias path:(例如 alias html;当location匹配down,请求down/index.html 服务器会返回html/index.html文件内容)
首页:index file file1 file2 (例如location / 时,访问ip 就会返回file,file不可以访问就返回file1)
根据返回的错误码重定向资源:error_page 404 =200 404.html(以200返回码返回404.html)
将错误码重定向到其它页面:
location /{
error_page 404 @fallback;
}
location @fallback{
proxy_pass http://tom.com/404.html;
}