This file is indexed.

/etc/lemonldap-ng/manager-apache2.conf is in liblemonldap-ng-manager-perl 1.3.3-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
67
68
69
70
71
72
73
74
75
76
77
78
79
#====================================================================
# Apache configuration for LemonLDAP::NG Manager
#====================================================================

# Uncomment this if no previous NameVirtualHost declaration
#NameVirtualHost *:80

# Manager virtual host (manager.example.com)
<VirtualHost *:80>
    ServerName manager.example.com

    # DocumentRoot
    DocumentRoot /var/lib/lemonldap-ng/manager/
    <Directory /var/lib/lemonldap-ng/manager/>
        <IfVersion < 2.4>
            Order allow,deny
            Allow from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all granted
        </IfVersion>
        Options +ExecCGI +FollowSymLinks
    </Directory>

    # On-line documentation
    Alias /doc/ /usr/share/doc/lemonldap-ng-doc/
    Alias /lib/ /usr/share/doc/lemonldap-ng-doc/lib/
    <Directory /usr/share/doc/lemonldap-ng-doc/>
        <IfVersion < 2.4>
            Order deny,allow
            Allow from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all granted
        </IfVersion>
        ErrorDocument 404 /notfound.html
        Options +FollowSymLinks
    </Directory>

    # Perl script
    # Note: to avoid manager stay in memory, we don't use ModPerl::Registry
    #       by default. Change this to increase manager performances
    <Files *.pl>
        SetHandler cgi-script
        #SetHandler perl-script
        #PerlResponseHandler ModPerl::Registry
    </Files>

    # Directory index
    <IfModule mod_dir.c>
        DirectoryIndex index.pl index.html
    </IfModule>

    <Location />
        <IfModule mod_deflate.c>
                AddOutputFilterByType DEFLATE text/html text/plain text/xml text/javascript text/css
                SetOutputFilter DEFLATE
                BrowserMatch ^Mozilla/4 gzip-only-text/html
                BrowserMatch ^Mozilla/4\.0[678] no-gzip
                BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
                SetEnvIfNoCase Request_URI \.(?:gif|jpe?g|png)$ no-gzip dont-vary
        </IfModule>
        <IfModule mod_headers.c>
                Header append Vary User-Agent env=!dont-vary
        </IfModule>
    </Location>
    <Location /doc/>
        <IfModule mod_expires.c>
                ExpiresActive On
                ExpiresDefault "access plus 1 month"
        </IfModule>
    </Location>
    <Location /skins/>
        <IfModule mod_expires.c>
                ExpiresActive On
                ExpiresDefault "access plus 1 month"
        </IfModule>
    </Location>
</VirtualHost>