This file is indexed.

/usr/share/python-ase/doc/development/buildbot.conf is in python-ase-doc 3.12.0-2.

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
# EEE.EEE.EEE.EEE is the IP of your External apache server:
# ase-buildbot.fysik.dtu.dk

<VirtualHost EEE.EEE.EEE.EEE:80>
    ServerName ase-buildbot.fysik.dtu.dk
    ServerAlias ase-buildbot ase-buildbot.fysik.dtu.dk
    Redirect / https://ase-buildbot.fysik.dtu.dk/
</VirtualHost>

<VirtualHost EEE.EEE.EEE.EEE:443>
    ServerName ase-buildbot.fysik.dtu.dk
    ServerAlias ase-buildbot ase-buildbot.fysik.dtu.dk

    # important http://httpd.apache.org/docs/current/mod/mod_proxy.html
    ProxyRequests Off

    # III.III.III.III:8080 the IP and port of the Internal buildbot web server

    ProxyPass / http://III.III.III.III:8080/
    ProxyPassReverse / http://III.III.III.III:8080/

    <Proxy http://III.III.III.III:8080/*>
	Options -Indexes
	Order deny,allow
	Deny from all
	Allow from 127.0.0.1
	Allow from ::1
	#Allow from all
    </Proxy>

SSLProxyEngine on

# provide an authority signed certificate
SSLCertificateFile /etc/pki/tls/certs/localhost.crt
SSLCertificateKeyFile /etc/pki/tls/private/localhost.key

</VirtualHost>

# vim: filetype=apache shiftwidth=4 tabstop=4 wrap!