This file is indexed.

/usr/share/pybit-web/apache_config.txt is in pybit-web 1.0.0-2.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
<VirtualHost *:80>
    WSGIDaemonProcess pybitweb user=pybitweb group=pybitweb processes=1 threads=5
    WSGIProcessGroup pybitweb
    WSGIScriptAlias / /usr/share/pybit-web/application.wsgi
    WSGIPassAuthorization On
    <Directory /usr/share/pybit-web/static>
        WSGIApplicationGroup %{GLOBAL}
        WSGIPassAuthorization On
        Order deny,allow
        Allow from all
    </Directory>
    LogLevel info
    ErrorLog ${APACHE_LOG_DIR}/pybit-error.log
    CustomLog ${APACHE_LOG_DIR}/pybit-access.log combined
</VirtualHost>