This file is indexed.

/etc/dms/dms-wsgi-apache.conf is in dms-wsgi 1.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
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
    WSGIDaemonProcess list_zone user=dms group=dms display-name=%{GROUP} python-path=/usr/share/dms processes=2 threads=1 maximum-requests=5 

    <Directory /etc/dms/wsgi-scripts/list_zone>
    # Make admin application(s) run as part of admin_dms WSGI Process
    WSGIProcessGroup list_zone
    # Make each WSGI script run in its own Python interpreter
    WSGIApplicationGroup %{RESOURCE}
    Order allow,deny
    Allow from all
    </Directory>

    WSGIScriptAlias /list_zone /etc/dms/wsgi-scripts/list_zone/list_zone.wsgi

    <Location /list_zone>
    AuthType Basic
    AuthName "Admin DMS list_zone"
    AuthUserFile /etc/dms/htpasswd-dms
    Require user admin-dms
    </Location>


    WSGIDaemonProcess dms user=dms group=dms display-name=%{GROUP} python-path=/usr/share/dms processes=3 threads=15 maximum-requests=450
    WSGIProcessGroup dms

    <Directory /etc/dms/wsgi-scripts>
    # Make each WSGI script run in its own Python interpreter
    WSGIApplicationGroup %{RESOURCE}
    Order allow,deny
    Allow from all
    </Directory>

    WSGIScriptAlias /admin_dms /etc/dms/wsgi-scripts/dms/admin_dms.wsgi

    <Location /admin_dms>
    AuthType Basic
    AuthName "Admin DMS"
    AuthUserFile /etc/dms/htpasswd-dms
    Require user admin-dms
    </Location>

    WSGIScriptAlias /helpdesk_dms /etc/dms/wsgi-scripts/dms/helpdesk_dms.wsgi

    <Location /helpdesk_dms>
    AuthType Basic
    AuthName "Helpdesk DMS"
    AuthUserFile /etc/dms/htpasswd-dms
    Require user helpdesk-dms
    </Location>

    WSGIScriptAlias /value_reseller_dms /etc/dms/wsgi-scripts/dms/value_reseller_dms.wsgi

    <Location /value_reseller_dms>
    AuthType Basic
    AuthName "Value Reseller DMS"
    AuthUserFile /etc/dms/htpasswd-dms
    Require user value-reseller-dms
    </Location>

    WSGIScriptAlias /hosted_dms /etc/dms/wsgi-scripts/dms/hosted_dms.wsgi

    <Location /hosted_dms>
    AuthType Basic
    AuthName "Hosted DMS"
    AuthUserFile /etc/dms/htpasswd-dms
    Require user hosted-dms
    </Location>