This file is indexed.

/etc/apache2/conf-available/webgui-apache.conf is in webgui 7.10.29-3.

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
ExtendedStatus On

PerlOptions        +SetupEnv
PerlSetVar         WebguiRoot /usr/share/webgui
PerlCleanupHandler Apache2::SizeLimit
PerlRequire        /usr/share/webgui/sbin/preload.perl

# If you change this, be sure to change webgui.conf accordingly
Alias /extras/  /usr/share/webgui/extras/
Alias /uploads/ /var/lib/webgui/uploads/

# If you change this, be sure to change webgui.conf accordingly
<Directory /var/lib/webgui/uploads/>
    Order deny,allow
    Deny from all
    Allow from all
</Directory>

# If you change this, be sure to change webgui.conf accordingly
Alias /exports/ /var/lib/webgui/exports/
<Directory /var/lib/webgui/exports/>
    Options Indexes
    Order deny,allow
    Deny from all
    Allow from all
</Directory>

# If you change this, be sure to change webgui.conf accordingly
<Location /webgui>
    SetHandler      perl-script
    PerlInitHandler WebGUI
    PerlSetVar      WebguiConfig webgui.conf
</Location>