为了给自己做个备忘,也为了有相同需求的同学们少走点弯路,就想把这个过程分享出来一下
之前在centos服务器上,已经通过使用nginx+php搭建了一套生产环境,用于公司网站的服务,但是之后由于业务需求,同时需要一台能支持java的服务器。于是为了节省资源(吐槽君:还不是因为穷),就想在已有的服务器基础上同时能够支持php和java。
由于之前php服务器主要使用了nginx + php-fpm的配置,因此在此基础上沿用了nginx作为中转,然后java部分使用了tomcat作为服务器。
核心思想
其实说起来很简单,就是通过nginx作为中转服务器,将需要php处理的请求中转到php服务器上,将需要java处理的请求中转到java服务器(本例中为tomcat)上即可。
核心内容就在于nginx的配置文件上。
环境准备
首先需要在服务器上安装nginx、php和tomcat服务,具体可以通过yum或者手动安装(相关教程很多,就不再阐述)。
之后需要进行nginx+php的配置。
具体可以参考以下文章:
nginx+php配置
tomcat+jdk安装
tomcat配置
鉴于开发过程中选择了maven打包为war的方式,因此也tomcat部分主要也采用了war包的部署方式。具体的配置文件如下所示,重点在于context部分的配置:
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true">
<Context path="" docBase="chuangao" privileged="true" />
<!-- SingleSignOn valve, share authentication between web applications
Documentation at: /docs/config/valve.html -->
<!--
<Valve className="org.apache.catalina.authenticator.SingleSignOn" />
-->
<!-- Access log processes all example.
Documentation at: /docs/config/valve.html
Note: The pattern used is equivalent to using pattern="common" -->
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt"
pattern="%h %l %u %t "%r" %s %b" />
</Host>
从中可以看到,我们选择了localhost域名作为服务访问的host(关于为什么使用了localhost作为hostname之后nginx的配置中会有详细的解释),同时将war就部署在了tomcat目录下的webapps目录下。
具体再看一下context的内容,我们选择了webapps下面的根目录(即webapps目录本身)作为访问路径,然后使用了chuangao的包名作为程序war包的名称(即该配置下,只许将chuangao.war放置于webapps目录下即可生效)
nginx配置
接下来就到了重点部分,nginx的配置,具体的nginx配置如下:
# The default server
#
server {
listen 80 default_server;
server_name _;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
root /usr/share/nginx/html/forum/upload;
index index.php index.html index.htm;
}
# error_page 404 /404.html;
# location = /404.html {
# root /usr/share/nginx/html/forum/upload;
# }
# redirect server error pages to the static page /50x.html
#
# error_page 500 502 503 504 /50x.html;
# location = /50x.html {
# root /usr/share/nginx/html/forum/upload;
# }
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
root /usr/share/nginx/html/forum/upload;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
#pass java request
location /chuangao/ {
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
关于如何配置,已经配置的各项参数的意义不是本文的重点就不着重阐述了,我们主要看到中转的重点就在于对location部分的设置。由于location部分支持正则表达式的方式进行匹配,因此nginx的匹配还是非常灵活的,大家可以完全根据自己的需求进行相关设置以最好的实现自己的需求。
在本例中:
- 首先通过“location ~ .php$”的配置,对所有php结尾的文件进行了匹配,从而实现将所有对.php文件的请求重新发送给了fastcgi进行响应。简便起见,这里把rewrite之类的静态化配置已经删除了,如果还需要进行静态化配置会稍显复杂一些,但是总体思路应该是差不多的。
- 其次通过“location /chuangao/”的配置,将所有对hostname/chuangao/的请求转发到了localhost的8080端口进行响应,也就是我们之前所配置的tomcat服务器进行响应(因此在tomcat的配置中使用了localhost作为hostname)。其实根据需求也可以仿照前面php采用正则表达式对.jsp文件或者do action进行响应,但是由于后端采用了REST风格,因此就这里就直接定向到了/chuangao/路径。
这里特别想强调一下:nginx里的location转发路径(./chuangao/)需要和tomcat里所配置的包路径相同,主要是因为中转过程中未进行其它处理就将请求发送到8080端口的tomcat服务器了,那里接受到的请求本身就包含了/chuangao/这一层路径,而tomcat中即使配置了path=""也会使用到包名作为路径区分(本例中也就是docBase="chuangao"中的chuangao),因此这里一定需要记得保持一致。
(吐槽君:某个傻人在第二次配置时就因为换了包名但是忘记更换nginx请求中的匹配导致配置不成功 某傻人:所以我不是来备忘了么〒▽〒)
于是就完成了这么一个 (节省经费) 节省资源的可同时用于java和php服务的服务器配置,enjoy~ :)