linux下面tomcat域名配置
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
一、貌似多域名配置
1:将默认的8080端口改成80,因为80是默认的网页端口。
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8"/>
2:复制下面的内容,到/conf/server.xml下面。
<Host name="配置的域名" appBase="/home/temobi"
unpackWARs="true" autoDeploy="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 -->
<!--
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
-->
</Host>
3:在/home/temobi下面新建一个ROOT文件夹,
4:将本地的tomcat下面的temobi工程中的内容copy到/home/temobi/ROOT文件夹下面。
5:将tomcat/webapps下面的host-manager文件夹和manager文件夹copy到/home/temobi文件夹下面。
好了,大功告成!
二、单域名配置
1:将默认的8080端口改成80,因为80是默认的网页端口。
<Connector port="8080" protocol="HTTP/1.1"
connectionTimeout="20000"
redirectPort="8443" URIEncoding="UTF-8"/>
2:复制下面的内容,到/conf/server.xml下面。
<Host name="配置的域名" appBase="webapps"
unpackWARs="true" autoDeploy="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 -->
<!--
<Valve className="org.apache.catalina.valves.AccessLogValve" directory="logs"
prefix="localhost_access_log." suffix=".txt" pattern="common" resolveHosts="false"/>
-->
</Host>
3:将tomcat/webapps/ROOT下面的内容删除,将本地的工程中的文件夹放入到tomcat/webapps/ROOT下面。
好了,大功告成!
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献2条内容
所有评论(0)