Advertisement
Guest User

Untitled

a guest
Mar 16th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8.  
  9. http://www.apache.org/licenses/LICENSE-2.0
  10.  
  11. Unless required by applicable law or agreed to in writing, software
  12. distributed under the License is distributed on an "AS IS" BASIS,
  13. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. See the License for the specific language governing permissions and
  15. limitations under the License.
  16. -->
  17. <tomcat-users xmlns="http://tomcat.apache.org/xml"
  18. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  19. xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
  20. version="1.0">
  21. <!--
  22. NOTE: By default, no user is included in the "manager-gui" role required
  23. to operate the "/manager/html" web application. If you wish to use this app,
  24. you must define such a user - the username and password are arbitrary. It is
  25. strongly recommended that you do NOT use one of the users in the commented out
  26. section below since they are intended for use with the examples web
  27. application.
  28. -->
  29. <!--
  30. NOTE: The sample user and role entries below are intended for use with the
  31. examples web application. They are wrapped in a comment and thus are ignored
  32. when reading this file. If you wish to configure these users for use with the
  33. examples web application, do not forget to remove the <!.. ..> that surrounds
  34. them. You will also need to set the passwords to something appropriate.
  35. -->
  36. <!--
  37. <role rolename="tomcat"/>
  38. <role rolename="role1"/>
  39. <user username="tomcat" password="<must-be-changed>" roles="tomcat"/>
  40. <user username="both" password="<must-be-changed>" roles="tomcat,role1"/>
  41. <user username="role1" password="<must-be-changed>" roles="role1"/>
  42. -->
  43. <role rolename="manager-gui"/>
  44. <user username="tomcat" password="tomcat" roles="manager-gui"/>
  45. </tomcat-users>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement