分类: LINUX
2012-08-28 14:51:59
安装 linux nginx resin jdk mysql jdbc 不会安装的就去 google
装好resin 以后 本机访问 127.0.0.1::8080 看到欢迎页面说明OK
装好nginx 以后 本机访问 127.0.0.1:80 出现nginx欢迎页面说明OK
开始整合
未整合的时候输入127.0.0.1/ndex.jsp 提示404
nginx与resin整合:
修改/usr/local/nginx/conf/nginx.conf
在http {后加入
upstream dynamic.com {
server 127.0.0.1:8080;
}
在location / { 前面加入
location ~ (\.jsp)|(\.do)$ {
proxy_pass
}