当前位置:Gxlcms > PHP教程 > Linux笔记(65)——nginx代理tomcat

Linux笔记(65)——nginx代理tomcat

时间:2021-07-01 10:21:17 帮助过:23人阅读

nginx是一个反向代理服务器,它可以代理php,同样也可以代理tomcat

首先,你要安装好nginx,jdk,tomcat

tomcat的安装很简单,解压出来就可以运行了。

然后进入ngxin配置文件所在目录,我的是在/usr/local/nginx/conf

创建一个配置文件,尽量避免修改原来的配置文件,在开启的时候使用我们创建的配置文件即可

vim jsp.conf

内容如下:

user nobody;
worker_processes 4;
events{
        worker_connections 1024;
}
http{

    server {
        listen 80;
        server_name localhost;
        location ~ \.jsp$ {
            root /usr/local/tomcat/webapps;
            indexindex.jsp;
            proxy_pass http://localhost:8080;
        }
    }
}

以上配置表示,监听80端口,所有以.jsp结尾的地址都转发给localhost:8080,也就是tomcat。工程目录部署在/usr/local/tomcat/webapps下

然后启动tomcat

cd /usr/local/tomcat/bin
./startup.sh

启动ngxin,使用我们刚刚创建的配置文件

/usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/jsp.conf

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

    以上就介绍了Linux笔记(65)——nginx代理tomcat,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

  • 人气教程排行