Nginx
前言
正向代理:代理客户端。
反向代理:将外网的客户端请求转发至内网服务器。即代理服务端。
简介
一般由Nginx作代理服务器,拦截外网的请求并处理返回静态资源请求,再转发动态资源请求交给内网的逻辑服务器。
可以保证内网逻辑服务器的安全,可以做到负载均衡,根据需要转发请求。
程序目录
-
/usr/sbin/nginx
:主程序
-
/etc/nginx
:存放配置文件
-
/usr/share/nginx
:存放静态文件
-
/var/log/nginx
:存放日志
配置文件
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 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
|
error_log log/error.log debug; events { accept_mutex on; multi_accept on; worker_connections 1024; }
http { include mime.types; default_type application/octet-stream; log_format myFormat '$remote_addr–$remote_user [$time_local] $request $status $body_bytes_sent $http_referer $http_user_agent $http_x_forwarded_for'; access_log log/access.log myFormat; sendfile on; sendfile_max_chunk 100k; keepalive_timeout 65;
upstream iii { server 127.0.0.1:8080 weight=1; server 127.0.0.1:8081 weight=3; server 192.168.10.121:3333 backup; } error_page 404 https://www.baidu.com; server { listen 80; server_name localhost; location / { root /etc/home/index; index index.html index.html; proxy_pass http://iii; } location /admin { } } server { keepalive_requests 120; listen 4545; server_name 127.0.0.1; location ~*^.+$ { proxy_pass http://mysvr; deny 127.0.0.1; allow 172.18.5.54; } }
|
WSGI模式
1 2 3 4 5
| location / { include /etc/nginx/uwsgi_params; uwsgi_pass localhost:8888 }
|
alias与root
1 2 3 4
| location /static { alias /root/home/proj/web_flask/flasker/ForBlueprint/static/ }
|
1 2 3 4 5 6
| # 区别 root与alias*主要区别*在于nginx如何解释location后面的uri,这会使两者分别以不同的方式将请求映射到服务器文件上。 `root`的处理结果是:root路径+location路径 `alias`的处理结果是:使用alias路径替换location路径
* 还有一个重要的区别是alias后面必须要用“/”结束,否则会找不到文件的,而root则可有可无
|