This file is indexed.

/etc/apache2/conf-available/mumble-django.conf is in mumble-django 2.13-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
Alias			/mumble-django/static/mumble/		/usr/share/pyshared-data/python-django-mumble/static/mumble/
Alias			/mumble-django/static/admin/		/usr/share/pyshared/django/contrib/admin/static/admin/
Alias			/mumble-django/static/			/usr/share/mumble-django/htdocs/

WSGIScriptAlias         /mumble-django		/usr/share/mumble-django/mumble-django.wsgi
WSGIDaemonProcess       mumble-django threads=25
WSGIProcessGroup        mumble-django
WSGIScriptReloading     Off

<Directory /usr/share/mumble-django/htdocs>
	<IfModule mod_headers.c>
		<FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
			Header set Cache-Control "max-age=86400, must-revalidate"
		</FilesMatch>
	</IfModule>
</Directory>

<Location /mumble-django>
	FileETag None
	<IfModule mod_deflate.c>
		AddOutputFilterByType DEFLATE text/html text/plain text/css text/javascript image/png image/jpeg image/gif
		<IfModule mod_headers.c>
			# properly handle requests coming from behind proxies
			Header unset ETag
			Header append Vary User-Agent
		</IfModule>
	</IfModule>
</Location>