Nginx反向代理⼩⽩教程
NGINX
Nginx是⼀款轻量级的Web服务器、反向代理服务器,由于它的内存占⽤少,启动极快,⾼并发能⼒强,在互联⽹项⽬中⼴泛应⽤。
反向代理
nginx和apache区别反向代理(Reverse Proxy)⽅式是指以代理服务器来接受Internet上的连接请求,然后将请求转发给内
部⽹络上的服务器,并将从服务器上得到的结果返回给Internet上请求连接的客户端,此时代理服务器对外就表现为⼀个服务器。
有反向代理,当然也存在正向代理的概念咯。正向代理指的是,⼀个位于客户端和原始服务器之间的服务器,为了从原始服务器取得内容,客户端向代理发送⼀个请求并指定⽬标(原始服务器),然后代理向原始服务器转交请求并将获得的内容返回给客户端。
我们通过⼀个简单例⼦,我们就很好的理解两者之间的区别了。
为什么使⽤反向代理?
-可以起到保护⽹站安全的作⽤,因为任何来⾃Internet的请求都必须先经过代理服务器。
-通过缓存静态资源,加速Web请求。
-实现负载均衡。
准备⼯作
作者⽤的 CentOS 7
安装nginx
官⽹在这:
安装tomcat
Nginx反向代理到Tomcat服务器
  在实际⽣产中,Tomcat服务器⼀般不单独使⽤在项⽬中,对于静态资源的响应Nginx表现的⽐较好,另外由于nginx是专门⽤于反向代理的服务器,所以很容易实现将java的请求转发到后端交给tomcat容器处理,⽽本⾝⽤来处理静态资源。
  tomcat官⽹:
实战
很多时候,在开发、测试环境下,我们都得⾃⼰去配置Nginx,就是去配置f。
...            #全局块
events {          #events块
...
}
http            #http块
{
...            #http全局块
server                                      #server块
{
...                                      #server全局块
location [PATTERN]                      #location块
{
...
}
location [PATTERN]
{
...
}
}
server
{
...
}
...                                          #http全局块
}
1、main全局块:配置影响nginx全局的指令。⼀般有运⾏nginx服务器的⽤户组,nginx进程pid存放路径,⽇志存放路径,配置⽂件引⼊,允许⽣成worker process数等。
2、events块:配置影响nginx服务器或与⽤户的⽹络连接。有每个进程的最⼤连接数,选取哪种事件驱动模型处理连接请求,是否允许同时接受多个⽹路连接,开启多个⽹络连接序列化等。
3、http块:可以嵌套多个server,配置代理,缓存,⽇志定义等绝⼤多数功能和第三⽅模块的配置。如⽂件引⼊,mime-type定义,⽇志⾃定义,是否使⽤sendfile传输⽂件,连接超时时间,单连接请求数等。
4、server块:配置虚拟主机的相关参数,⼀个http中可以有多个server。
5、location块:配置请求的路由,以及各种页⾯的处理情况。
#定义Nginx运⾏的⽤户和⽤户组
#user  nobody;
#nginx进程数,建议设置为等于CPU总核⼼数。
worker_processes  1;
#全局错误⽇志定义类型,[ debug | info | notice | warn | error | crit ]
#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
#进程⽂件
#pid        logs/nginx.pid;
#⼯作模式与连接数上限
events {
#单个进程最⼤连接数(最⼤连接数=连接数*进程数)
worker_connections  1024;
}
#设定http服务器
http {
#⽂件扩展名与⽂件类型映射表
include      pes;
#默认⽂件类型
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  logs/access.log  main;
#开启⾼效⽂件传输模式,sendfile指令指定nginx是否调⽤sendfile函数来输出⽂件,对于普通应⽤设为 on,如果⽤来进⾏下载等应⽤磁盘IO重负载应⽤,可设置为off,以平衡磁盘与⽹络I/O处理速度,降低系统的负载。注意:如果图⽚显⽰不正常把这个改成off。
sendfile        on;
#防⽌⽹络阻塞
#tcp_nopush    on;
#长连接超时时间,单位是秒
#keepalive_timeout  0;
keepalive_timeout  65;
#开启gzip压缩输出
#gzip  on;
#虚拟主机的配置
server {
#监听端⼝
listen      80;
#域名可以有多个,⽤空格隔开
server_name  localhost;
#默认编码
#charset utf-8;
#定义本虚拟主机的访问⽇志
#access_log  logs/host.access.log  main;
location / {
root  html;
index  index.html index.htm;
}
#error_page  404              /404.html;
# redirect server error pages to the static page /50x.html
#
error_page  500 502 503 504  /50x.html;
location = /50x.html {
root  html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
#    proxy_pass  127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
#    root          html;
#    fastcgi_pass  127.0.0.1:9000;
#    fastcgi_index  index.php;
#    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;        #    include        fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
#    deny  all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration    #
#server {
#    listen      8000;
#    listen      somename:8080;
#    server_name  somename  alias  another.alias;
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
# HTTPS server
#
#server {
#    listen      443 ssl;
#    server_name  localhost;
#    ssl_certificate      cert.pem;
#    ssl_certificate_key  cert.key;
#    ssl_session_cache    shared:SSL:1m;
#    ssl_session_timeout  5m;
#    ssl_ciphers  HIGH:!aNULL:!MD5;
#    ssl_prefer_server_ciphers  on;
#    location / {
#        root  html;
#        index  index.html index.htm;
#    }
#}
}
启动nginx!
# nginx
启动后进⼊localhost:80(端⼝不⼀定是80,详见f中server块)查看是否启动成功
其他常⽤命令
nginx -s quit  停⽌ngix
nginx -s reload  重新载⼊nginx(当配置信息发⽣修改时)
nginx -s reopen  打开⽇志⽂件
nginx -v  查看版本
nginx -t  查看nginx的配置⽂件的⽬录
nginx -h    查看帮助信息
配置f
我们可以通过修改server来构建⼀个简单的反向代理
server{
listen 8888;                                  #1~65535,只要没被占⽤,随便选择⼀个端⼝,你喜欢就好
server_name tomcat;                #当只有⼀个server块时这⼀项并不重要,多个server块时⼀定要添加⼀个name
location / {
proxy_pass  localhost:8080;    #tomcat地址(localhost是本机ip)
}
}
修改完成后保存退出,输⼊以下代码检查修改后的⽂件是否合法:
#  nginx -t
出现这样就说明没问题,可以下⼀步,否则要修改错误:

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。