Bug#814381: liblemonldap-ng-portal-perl: documentation recommend manager-apache2.conf which does not exist

Rosario Maddox bugs at rcdrun.com
Thu Feb 11 01:45:41 UTC 2016


Package: liblemonldap-ng-portal-perl
Version: 1.3.3-1
Severity: normal

Dear Maintainer,

The file:
/usr/share/doc/liblemonldap-ng-portal-perl/README.Debian

says:

Enable the components you've installed:

  # Portal
  a2ensite portal-apache2.conf

  # Manager
  a2ensite manager-apache2.conf

  but manager-apache2.conf does not exist.

  # Handler
  a2ensite handler-apache2.conf

  Neither this one exists.

-- System Information:
Debian Release: 8.3
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages liblemonldap-ng-portal-perl depends on:
ii  debconf                      1.5.56
ii  libcgi-pm-perl               4.09-1
ii  libclone-perl                0.37-1+b1
ii  libhtml-template-perl        2.95-1
ii  libjs-jquery                 1.7.2+dfsg-3.2
ii  libjs-jquery-cookie          10-1
ii  liblemonldap-ng-common-perl  1.3.3-1
ii  libmime-lite-perl            3.030-2
ii  libnet-ldap-perl             1:0.6400+dfsg-2
ii  libregexp-assemble-perl      0.35-8
ii  libstring-random-perl        1:0.26-1
ii  libunicode-string-perl       2.09-5+b2
ii  perl                         5.20.2-3+deb8u3

Versions of packages liblemonldap-ng-portal-perl recommends:
ii  libnet-facebook-oauth2-perl  0.08-1
ii  libwww-perl                  6.08-1

Versions of packages liblemonldap-ng-portal-perl suggests:
pn  libauthcas-perl               <none>
pn  libauthen-captcha-perl        <none>
ii  libdbi-perl                   1.631-3+b1
ii  libglib-perl                  3:1.305-2
ii  libhttp-message-perl          6.06-1
pn  liblasso-perl                 <none>
pn  liblemonldap-ng-handler-perl  <none>
ii  liblwp-protocol-https-perl    6.06-2
ii  libnet-facebook-oauth2-perl   0.08-1
pn  libnet-openid-consumer-perl   <none>
pn  libnet-openid-server-perl     <none>
pn  libnet-twitter-perl           <none>
ii  libsoap-lite-perl             1.11-1
ii  liburi-perl                   1.64-1
pn  libweb-id-perl                <none>
ii  libwww-perl                   6.08-1
ii  libxml-libxml-perl            2.0116+dfsg-1+deb8u1
ii  libxml-libxslt-perl           1.92-1+b1
ii  libxml-simple-perl            2.20-1
pn  slapd                         <none>

-- Configuration Files:
/etc/lemonldap-ng/portal-apache2.conf changed:
<VirtualHost *:80>
    ServerName auth.protected.rcdrun.com
    # DocumentRoot
    DocumentRoot /var/lib/lemonldap-ng/portal/
    <Directory /var/lib/lemonldap-ng/portal/>
        <IfVersion < 2.4>
            Order allow,deny
            Allow from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all granted
        </IfVersion>
        Options +ExecCGI +FollowSymLinks
    </Directory>
    # Perl script
    <Files *.pl>
        SetHandler perl-script
        PerlResponseHandler ModPerl::Registry
    </Files>
    <IfModule mod_dir.c>
        DirectoryIndex index.pl index.html
    </IfModule>
    # SOAP functions for sessions management (disabled by default)
    <Location /index.pl/adminSessions>
        <IfVersion < 2.4>
            Order deny,allow
            Deny from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all denied
        </IfVersion>
    </Location>
    # SOAP functions for sessions access (disabled by default)
    <Location /index.pl/sessions>
        <IfVersion < 2.4>
            Order deny,allow
            Deny from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all denied
        </IfVersion>
    </Location>
    # SOAP functions for configuration access (disabled by default)
    <Location /index.pl/config>
        <IfVersion < 2.4>
            Order deny,allow
            Deny from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all denied
        </IfVersion>
    </Location>
    # SOAP functions for notification insertion (disabled by default)
    <Location /index.pl/notification>
        <IfVersion < 2.4>
            Order deny,allow
            Deny from all
        </IfVersion>
        <IfVersion >= 2.4>
            Require all denied
        </IfVersion>
    </Location>
    # SAML2 Issuer
    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteRule ^/saml/metadata /metadata.pl
        RewriteRule ^/saml/.* /index.pl
    </IfModule>
    # CAS Issuer
    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteRule ^/cas/.* /index.pl
    </IfModule>
    # OpenID Issuer
    <IfModule mod_rewrite.c>
        RewriteEngine On
        RewriteRule ^/openidserver/.* /index.pl
    </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 /skins/>
        <IfModule mod_expires.c>
                ExpiresActive On
                ExpiresDefault "access plus 1 month"
        </IfModule>
    </Location>
</VirtualHost>
<Perl>
    #require Lemonldap::NG::Portal::SharedConf;
    #Lemonldap::NG::Portal::SharedConf->compile(
    #    qw(delete header cache read_from_client cookie redirect unescapeHTML));
    # Uncomment this line if you use Lemonldap::NG menu
    #require Lemonldap::NG::Portal::Menu;
    # Uncomment this line if you use portal SOAP capabilities
    #require SOAP::Lite;
</Perl>


-- no debconf information



More information about the pkg-perl-maintainers mailing list