This file is indexed.

/usr/share/php/Symfony/Bundle/WebServerBundle/Resources/config/webserver.xml is in php-symfony-web-server-bundle 3.4.6+dfsg-1.

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
<?xml version="1.0" ?>

<container xmlns="http://symfony.com/schema/dic/services"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd">

    <services>
        <defaults public="false" />

        <service id="web_server.command.server_run" class="Symfony\Bundle\WebServerBundle\Command\ServerRunCommand">
            <argument>%kernel.project_dir%/public</argument>
            <argument>%kernel.environment%</argument>
            <tag name="console.command" command="server:run" />
        </service>

        <service id="web_server.command.server_start" class="Symfony\Bundle\WebServerBundle\Command\ServerStartCommand">
            <argument>%kernel.project_dir%/public</argument>
            <argument>%kernel.environment%</argument>
            <tag name="console.command" command="server:start" />
        </service>

        <service id="web_server.command.server_stop" class="Symfony\Bundle\WebServerBundle\Command\ServerStopCommand">
            <tag name="console.command" command="server:stop" />
        </service>

        <service id="web_server.command.server_status" class="Symfony\Bundle\WebServerBundle\Command\ServerStatusCommand">
            <tag name="console.command" command="server:status" />
        </service>

        <service id="web_server.command.server_log" class="Symfony\Bundle\WebServerBundle\Command\ServerLogCommand">
            <tag name="console.command" command="server:log" />
        </service>
    </services>
</container>