This file is indexed.

/usr/share/tomcat7-docs/docs/appdev/sample/index.html is in tomcat7-docs 7.0.52-1ubuntu0.16.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!--
  Licensed to the Apache Software Foundation (ASF) under one or more
  contributor license agreements.  See the NOTICE file distributed with
  this work for additional information regarding copyright ownership.
  The ASF licenses this file to You under the Apache License, Version 2.0
  (the "License"); you may not use this file except in compliance with
  the License.  You may obtain a copy of the License at

      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
-->
<html>
<head>
<meta name="author" content="Ben Souther" />
<title>Sample Application</title>
</head>
<body>
<h2>Sample Application</h2>
      <p>
        The example app has been packaged as a war file and can be downloaded
        <a href="sample.war">here</a> (Note: make sure your browser doesn't
        change file extension or append a new one).
      </p>
      <p>
        The easiest way to run this application is simply to move the war file
        to your <b>CATALINA_HOME/webapps</b> directory. Tomcat will automatically
        expand and deploy the application for you. You can view it with the
        following URL (assuming that you're running tomcat on port 8080
        as is the default):
        <br />
        <a href="http://localhost:8080/sample">http://localhost:8080/sample</a>
      </p>
      <p>
        If you just want to browse the contents, you can unpack the war file
        with the <b>jar</b> command.
      </p>
      <pre>
        jar -xvf sample.war
      </pre>
</body>
</html>