feat: 增加Tomcat测试环境

This commit is contained in:
ZacharyZcR
2024-12-23 03:42:46 +08:00
parent 1f860f22c8
commit 57b6d41737
4 changed files with 43 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<tomcat-users xmlns="http://tomcat.apache.org/xml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
version="1.0">
<role rolename="manager-gui"/>
<role rolename="manager-script"/>
<role rolename="manager-jmx"/>
<role rolename="manager-status"/>
<role rolename="admin-gui"/>
<role rolename="admin-script"/>
<user username="admin" password="123456" roles="manager-gui,manager-script,manager-jmx,manager-status"/>
<user username="tomcat" password="tomcat" roles="manager-gui"/>
<user username="both" password="both" roles="manager-gui,admin-gui"/>
<user username="root" password="root123" roles="manager-gui,manager-script"/>
</tomcat-users>