Documentation update

This commit is contained in:
Clément Oudot 2014-12-19 09:03:15 +00:00
parent 12582752e7
commit 08bee459b2
13 changed files with 17732 additions and 18260 deletions

View File

@ -291,19 +291,26 @@ You may want to use the <a href="../../documentation/1.4/authmulti.html" class="
</p>
<p>
This needs some hacking because the Apache Kerberos authentication module do not work if <code>require valid-user</code> is not set.
This needs some hacking because the Apache Kerberos authentication module do not work if <code>require valid-user</code> is not set. This requires to create a second virtual host (kerberos.example.com), which should be registered into the <acronym title="Domain Name System">DNS</acronym> system.
</p>
<p>
<p><div class="notetip">
We use here kerberos.example.com as primary portal <acronym title="Uniform Resource Locator">URL</acronym> and auth.example.com as failback portal <acronym title="Uniform Resource Locator">URL</acronym>. You can of course change these names if you need.
</div></p>
</p>
<p>
To achieve this, follow these steps:
</p>
<ul>
<li class="level1"><div class="li"> Create a symlink on portal/index.pl to define the kerberos authentication end point:</div>
<li class="level1"><div class="li"> In Apache portal configuration, copy the default virtualhost (auth.example.com) a paste it as a new one. This new one is standard and don&#039;t need to load the mod_auth_kerb module.</div>
</li>
<li class="level1"><div class="li"> Rename the first into kerberos.example.com:</div>
</li>
</ul>
<pre class="code">
ln -s /var/lib/lemonldap-ng/portal/index.pl /var/lib/lemonldap-ng/portal/kerberos.pl
</pre>
<pre class="code file apache"> <span class="kw1">ServerName</span> kerberos.example.com</pre>
<ul>
<li class="level1"><div class="li"> Create a redirection script, called login.pl:</div>
</li>
@ -314,17 +321,16 @@ vi /var/lib/lemonldap-ng/portal/login.pl
<pre class="code file perl"><span class="co1">#!/usr/bin/perl</span>
<span class="kw2">use</span> CGI <span class="st_h">':cgi-lib'</span><span class="sy0">;</span>
<span class="kw2">use</span> strict<span class="sy0">;</span>
<span class="kw2">use</span> MIME<span class="sy0">::</span><span class="me2">Base64</span><span class="sy0">;</span>
<span class="kw2">use</span> CGI<span class="sy0">::</span><span class="me2">Carp</span> <span class="st_h">'fatalsToBrowser'</span><span class="sy0">;</span>
<span class="kw1">my</span> <span class="re0">$uri</span> <span class="sy0">=</span> <span class="re0">$ENV</span><span class="br0">&#123;</span><span class="st0">&quot;REDIRECT_QUERY_STRING&quot;</span><span class="br0">&#125;</span><span class="sy0">;</span>
<a href="http://perldoc.perl.org/functions/print.html"><span class="kw3">print</span></a> CGI<span class="sy0">::</span><span class="me2">header</span><span class="br0">&#40;</span><span class="sy0">-</span>Refresh <span class="sy0">=&gt;</span> <span class="st_h">'0; URL=http://auth.example.com/?'</span><span class="sy0">.</span><span class="re0">$uri</span><span class="br0">&#41;</span><span class="sy0">;</span>
<span class="kw1">my</span> <span class="re0">$uri</span> <span class="sy0">=</span> <span class="re0">$ENV</span><span class="br0">&#123;</span><span class="st0">&quot;REQUEST_URI&quot;</span><span class="br0">&#125;</span><span class="sy0">;</span>
<a href="http://perldoc.perl.org/functions/print.html"><span class="kw3">print</span></a> CGI<span class="sy0">::</span><span class="me2">header</span><span class="br0">&#40;</span><span class="sy0">-</span>Refresh <span class="sy0">=&gt;</span> <span class="st_h">'0; URL=https://auth.example.com'</span><span class="sy0">.</span><span class="re0">$uri</span><span class="br0">&#41;</span><span class="sy0">;</span>
<a href="http://perldoc.perl.org/functions/exit.html"><span class="kw3">exit</span></a><span class="br0">&#40;</span>0<span class="br0">&#41;</span><span class="sy0">;</span></pre>
<ul>
<li class="level1"><div class="li"> Modify the Apache virtual host to separate the Kerberos Authentication module:</div>
<li class="level1"><div class="li"> Modify the virtual host to load Kerberos Authentication module on specific page:</div>
</li>
</ul>
<pre class="code file apache">&lt;<span class="kw3">VirtualHost</span> *&gt;
<span class="kw1">ServerName</span> auth.example.com
<span class="kw1">ServerName</span> kerberos.example.com
&nbsp;
<span class="kw1">DocumentRoot</span> /var/lib/lemonldap-ng/portal/
&nbsp;
@ -335,7 +341,7 @@ vi /var/lib/lemonldap-ng/portal/login.pl
&lt;/<span class="kw3">Directory</span>&gt;
&nbsp;
<span class="kw1">ErrorDocument</span> 401 /login.pl
&lt;<span class="kw3">Location</span> /kerberos.pl&gt;
&lt;<span class="kw3">LocationMatch</span> /(index.pl|cas/*|saml/*|openidserver/*)&gt;
&lt;<span class="kw3">IfModule</span> auth_kerb_module&gt;
<span class="kw1">AuthType</span> Kerberos
KrbMethodNegotiate <span class="kw2">On</span>
@ -343,13 +349,17 @@ vi /var/lib/lemonldap-ng/portal/login.pl
KrbAuthRealms EXAMPLE.COM
Krb5KeyTab /etc/lemonldap-ng/auth.keytab
KrbVerifyKDC <span class="kw2">Off</span>
KrbServiceName HTTP/auth.example.com
KrbServiceName HTTP/kerberos.example.com
<span class="kw1">Satisfy</span> any
<span class="kw1">Order</span> <span class="kw1">allow</span>,<span class="kw1">deny</span>
<span class="kw1">allow</span> from APPLICATIONS_IP
<span class="kw1">require</span> valid-<span class="kw1">user</span>
&lt;/<span class="kw3">IfModule</span>&gt;
&lt;/<span class="kw3">Location</span>&gt;
&lt;/<span class="kw3">LocationMatch</span>&gt;
&nbsp;
&lt;/<span class="kw3">VirtualHost</span>&gt;</pre>
<ul>
<li class="level1"><div class="li"> Modify LemonLDAP::NG Portal <acronym title="Uniform Resource Locator">URL</acronym> trough Manager to: <a href="http://auth.example.com/kerberos.pl" class="urlextern" title="http://auth.example.com/kerberos.pl" rel="nofollow">http://auth.example.com/kerberos.pl</a></div>
<li class="level1"><div class="li"> Modify LemonLDAP::NG Portal <acronym title="Uniform Resource Locator">URL</acronym> trough Manager to: <a href="http://kerberos.example.com/" class="urlextern" title="http://kerberos.example.com/" rel="nofollow">http://kerberos.example.com/</a></div>
</li>
<li class="level1"><div class="li"> Configure Multiple authentication backend (for example: Apache;<acronym title="Lightweight Directory Access Protocol">LDAP</acronym>)</div>
</li>
@ -357,16 +367,22 @@ vi /var/lib/lemonldap-ng/portal/login.pl
</li>
</ul>
<p>
<p><div class="noteimportant">For <acronym title="Central Authentication Service">CAS</acronym>, <acronym title="Security Assertion Markup Language">SAML</acronym> or OpenID to work, you need to authorize applications <acronym title="Internet Protocol">IP</acronym> to pass trough Kerberos authentication, for ticket validation for example.
</div></p>
</p>
</div>
<!-- SECTION "Use Kerberos with Multiple authentication backend" [4635-6422] -->
<!-- SECTION "Use Kerberos with Multiple authentication backend" [4635-7092] -->
<h3><a name="time_to_test" id="time_to_test">Time to test</a></h3>
<div class="level3">
<p>
Configure <acronym title="Internet Explorer">IE</acronym> or Firefox to trust <code><a href="http://auth.example.com" class="urlextern" title="http://auth.example.com" rel="nofollow">http://auth.example.com</a></code>, and then it should work!
Configure <acronym title="Internet Explorer">IE</acronym> or Firefox to trust <code><a href="http://auth.example.com" class="urlextern" title="http://auth.example.com" rel="nofollow">http://auth.example.com</a></code> or <code><a href="http://kerberos.example.com" class="urlextern" title="http://kerberos.example.com" rel="nofollow">http://kerberos.example.com</a></code> , and then it should work!
</p>
</div>
<!-- SECTION "Time to test" [6423-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "Time to test" [7093-] --></div><!-- closes <div class="dokuwiki export">-->

View File

@ -30,6 +30,18 @@
Browseable session backend (<a href="http://search.cpan.org/perldoc?Apache::Session::Browseable" class="urlextern" title="http://search.cpan.org/perldoc?Apache::Session::Browseable" rel="nofollow">Apache::Session::Browseable</a>) works exactly like Apache::Session::* corresponding module but add indexes that increase <a href="../../documentation/features.html#session_explorer" class="wikilink1" title="documentation:features">session explorer</a> and <a href="../../documentation/features.html#session_restrictions" class="wikilink1" title="documentation:features">session restrictions</a> performances.
</p>
<p>
<p><div class="noteimportant">
Please use a recent version of Apache::Session::Browseable.
</p>
<p>
Current debian wheezy 0.7.1 version is obsolete and not functionnal.
Last version can be found on CPAN : <a href="http://search.cpan.org/dist/Apache-Session-Browseable/" class="urlextern" title="http://search.cpan.org/dist/Apache-Session-Browseable/" rel="nofollow">http://search.cpan.org/dist/Apache-Session-Browseable/</a>
</div></p>
</p>
<p>
If you use features like <acronym title="Security Assertion Markup Language">SAML</acronym> (authentication and issuer), <acronym title="Central Authentication Service">CAS</acronym> (issuer) and password reset self-service, you also need to index some fields.
</p>
@ -75,12 +87,12 @@ The following table list fields to index depending on the feature you want to in
</p>
</div>
<!-- SECTION "Browseable session backend" [1-1379] -->
<!-- SECTION "Browseable session backend" [1-1626] -->
<h2><a name="setup" id="setup">Setup</a></h2>
<div class="level2">
</div>
<!-- SECTION "Setup" [1380-1398] -->
<!-- SECTION "Setup" [1627-1645] -->
<h3><a name="prepare_database" id="prepare_database">Prepare database</a></h3>
<div class="level3">
@ -105,8 +117,13 @@ Database must be prepared exactly like in <a href="../../documentation/1.4/sqlse
<span class="kw1">KEY</span> ipAddr <span class="br0">&#40;</span>ipAddr<span class="br0">&#41;</span>
<span class="br0">&#41;</span>;</pre>
<p>
<p><div class="noteimportant">Change char(32) by char(64) if you use the now recommanded SHA256 hash algorithm. See <a href="../../documentation/current/sessions.html" class="wikilink1" title="documentation:latest:sessions">Sessions</a> for more details
</div></p>
</p>
</div>
<!-- SECTION "Prepare database" [1399-1946] -->
<!-- SECTION "Prepare database" [1646-2363] -->
<h3><a name="manager" id="manager">Manager</a></h3>
<div class="level3">
@ -171,7 +188,7 @@ For databases like PostgreSQL, don&#039;t forget to add “Commit” with a valu
</p>
</div>
<!-- SECTION "Manager" [1947-3124] -->
<!-- SECTION "Manager" [2364-3541] -->
<h2><a name="security" id="security">Security</a></h2>
<div class="level2">
@ -185,4 +202,4 @@ You can also use different user/password for your servers by overriding paramete
</p>
</div>
<!-- SECTION "Security" [3125-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "Security" [3542-] --></div><!-- closes <div class="dokuwiki export">-->

View File

@ -56,7 +56,7 @@ This can be useful to allow an third party application to access a virtual host
<p>
Configure the virtual host like other <a href="../../documentation/1.4/configvhost.html" class="wikilink1" title="documentation:1.4:configvhost">protected virtual host</a> but use AuthBaisc Handler instead of default Handler.
Configure the virtual host like other <a href="../../documentation/1.4/configvhost.html" class="wikilink1" title="documentation:1.4:configvhost">protected virtual host</a> but use AuthBasic Handler instead of default Handler.
</p>
<pre class="code file apache">&lt;<span class="kw3">VirtualHost</span> *:80&gt;
<span class="kw1">ServerName</span> basic.example.com
@ -69,8 +69,21 @@ Configure the virtual host like other <a href="../../documentation/1.4/configvho
&nbsp;
&lt;/<span class="kw3">VirtualHost</span>&gt;</pre>
<p>
<p><div class="notetip">
If LemonLDAP::NG portal is protected by <acronym title="Secure Sockets Layer">SSL</acronym> with a self-signed certificate, you can add this line to accept it:
</p>
<pre class="code file apache">PerlSetEnv PERL_LWP_SSL_VERIFY_HOSTNAME <span class="nu0">0</span></pre>
<p>
</div></p>
</p>
</div>
<!-- SECTION "Virtual host in Apache" [662-1110] -->
<!-- SECTION "Virtual host in Apache" [662-1306] -->
<h3><a name="handler_parameters" id="handler_parameters">Handler parameters</a></h3>
<div class="level3">
@ -80,4 +93,4 @@ No parameters needed. But you have to allow sessions web services, see <a href="
</p>
</div>
<!-- SECTION "Handler parameters" [1111-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "Handler parameters" [1307-] --></div><!-- closes <div class="dokuwiki export">-->

View File

@ -94,6 +94,11 @@ deb http://lemonldap-ng.org/deb squeeze main
deb-src http://lemonldap-ng.org/deb squeeze main
</pre>
<p>
<p><div class="notetip">Repository is named squeeze but works for all Debian/Ubuntu versions
</div></p>
</p>
<p>
Run this to update packages cache:
@ -103,7 +108,7 @@ apt-get update
</pre>
</div>
<!-- SECTION "LL::NG repository" [934-1283] -->
<!-- SECTION "LL::NG repository" [934-1370] -->
<h3><a name="manual_download" id="manual_download">Manual download</a></h3>
<div class="level3">
@ -113,7 +118,7 @@ Packages are available on the <a href="../../download.html" class="wikilink1" ti
</p>
</div>
<!-- SECTION "Manual download" [1284-1370] -->
<!-- SECTION "Manual download" [1371-1457] -->
<h2><a name="package_gpg_signature" id="package_gpg_signature">Package GPG signature</a></h2>
<div class="level2">
@ -130,12 +135,12 @@ apt-key add rpm-gpg-key-ow2
</pre>
</div>
<!-- SECTION "Package GPG signature" [1371-1539] -->
<!-- SECTION "Package GPG signature" [1458-1626] -->
<h2><a name="install_packages" id="install_packages">Install packages</a></h2>
<div class="level2">
</div>
<!-- SECTION "Install packages" [1540-1569] -->
<!-- SECTION "Install packages" [1627-1656] -->
<h3><a name="with_aptitude" id="with_aptitude">With aptitude</a></h3>
<div class="level3">
<pre class="code">
@ -143,7 +148,7 @@ aptitude install lemonldap-ng
</pre>
</div>
<!-- SECTION "With aptitude" [1570-1640] -->
<!-- SECTION "With aptitude" [1657-1727] -->
<h3><a name="with_dpkg" id="with_dpkg">With dpkg</a></h3>
<div class="level3">
@ -161,12 +166,12 @@ dpkg -i liblemonldap-ng-* lemonldap-ng*
</pre>
</div>
<!-- SECTION "With dpkg" [1641-1789] -->
<!-- SECTION "With dpkg" [1728-1876] -->
<h2><a name="first_configuration_steps" id="first_configuration_steps">First configuration steps</a></h2>
<div class="level2">
</div>
<!-- SECTION "First configuration steps" [1790-1828] -->
<!-- SECTION "First configuration steps" [1877-1915] -->
<h3><a name="change_default_dns_domain" id="change_default_dns_domain">Change default DNS domain</a></h3>
<div class="level3">
@ -177,7 +182,7 @@ By default, <acronym title="Domain Name System">DNS</acronym> domain is <code>ex
<pre class="code shell">sed -i 's/example\.com/ow2.org/g' /etc/lemonldap-ng/* /var/lib/lemonldap-ng/conf/lmConf-1 /var/lib/lemonldap-ng/test/index.pl</pre>
</div>
<!-- SECTION "Change default DNS domain" [1829-2143] -->
<!-- SECTION "Change default DNS domain" [1916-2230] -->
<h3><a name="enable_llng_sites" id="enable_llng_sites">Enable LL::NG sites</a></h3>
<div class="level3">
@ -205,7 +210,7 @@ Restart Apache:
apache2ctl restart</pre>
</div>
<!-- SECTION "Enable LL::NG sites" [2144-2496] -->
<!-- SECTION "Enable LL::NG sites" [2231-2583] -->
<h3><a name="reload_virtual_host" id="reload_virtual_host">Reload virtual host</a></h3>
<div class="level3">
@ -222,7 +227,7 @@ To allow the manager to reload the configuration, register the reload virtual ho
</p>
</div>
<!-- SECTION "Reload virtual host" [2497-2798] -->
<!-- SECTION "Reload virtual host" [2584-2885] -->
<h3><a name="upgrade" id="upgrade">Upgrade</a></h3>
<div class="level3">
@ -244,7 +249,7 @@ The upgrade process will also have migrate old configuration files into <code>/e
</p>
</div>
<!-- SECTION "Upgrade" [2799-4957] -->
<!-- SECTION "Upgrade" [2886-5044] -->
<h3><a name="dns" id="dns">DNS</a></h3>
<div class="level3">
@ -271,7 +276,7 @@ Follow the <a href="../../documentation/1.4/start.html#configuration" class="wik
</p>
</div>
<!-- SECTION "DNS" [4958-5230] -->
<!-- SECTION "DNS" [5045-5317] -->
<h2><a name="file_location" id="file_location">File location</a></h2>
<div class="level2">
<ul>
@ -292,7 +297,7 @@ Follow the <a href="../../documentation/1.4/start.html#configuration" class="wik
</ul>
</div>
<!-- SECTION "File location" [5231-5767] -->
<!-- SECTION "File location" [5318-5854] -->
<h2><a name="build_your_packages" id="build_your_packages">Build your packages</a></h2>
<div class="level2">
@ -308,4 +313,4 @@ make debian-packages
</pre>
</div>
<!-- SECTION "Build your packages" [5768-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "Build your packages" [5855-] --></div><!-- closes <div class="dokuwiki export">-->

View File

@ -120,19 +120,13 @@ yum update
<p>
<p><div class="notewarning">
You must also install a repository for non-core dependencies. Example with EPEL:
</p>
<pre class="code shell">rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm</pre>
<p>
See <a href="../../documentation/1.4/prereq.html#yum" class="wikilink1" title="documentation:1.4:prereq">prerequisites and dependencies</a> chapter for more.
You must also install the EPEL repository for non-core dependencies. See <a href="../../documentation/1.4/prereq.html#yum" class="wikilink1" title="documentation:1.4:prereq">prerequisites and dependencies</a> chapter for more.
</div></p>
</p>
</div>
<!-- SECTION "YUM repository" [974-1728] -->
<!-- SECTION "YUM repository" [974-1607] -->
<h3><a name="manual_download" id="manual_download">Manual download</a></h3>
<div class="level3">
@ -142,7 +136,7 @@ RPMs are available on the <a href="../../download.html" class="wikilink1" title=
</p>
</div>
<!-- SECTION "Manual download" [1729-1811] -->
<!-- SECTION "Manual download" [1608-1690] -->
<h2><a name="package_gpg_signature" id="package_gpg_signature">Package GPG signature</a></h2>
<div class="level2">
@ -159,12 +153,12 @@ rpm --import rpm-gpg-key-ow2
</pre>
</div>
<!-- SECTION "Package GPG signature" [1812-1977] -->
<!-- SECTION "Package GPG signature" [1691-1856] -->
<h2><a name="install_packages" id="install_packages">Install packages</a></h2>
<div class="level2">
</div>
<!-- SECTION "Install packages" [1978-2007] -->
<!-- SECTION "Install packages" [1857-1886] -->
<h3><a name="with_yum" id="with_yum">With YUM</a></h3>
<div class="level3">
@ -191,7 +185,7 @@ yum localinstall lemonldap-ng-* perl-Lemonldap-NG-*
</pre>
</div>
<!-- SECTION "With YUM" [2008-2425] -->
<!-- SECTION "With YUM" [1887-2304] -->
<h3><a name="with_rpm" id="with_rpm">With RPM</a></h3>
<div class="level3">
@ -237,12 +231,12 @@ ln -s /usr/lib/perl5/vendor_perl/5.8.8/auto/Lemonldap /usr/lib64/perl5/auto/
</p>
</div>
<!-- SECTION "With RPM" [2426-3147] -->
<!-- SECTION "With RPM" [2305-3026] -->
<h2><a name="first_configuration_steps" id="first_configuration_steps">First configuration steps</a></h2>
<div class="level2">
</div>
<!-- SECTION "First configuration steps" [3148-3186] -->
<!-- SECTION "First configuration steps" [3027-3065] -->
<h3><a name="change_default_dns_domain" id="change_default_dns_domain">Change default DNS domain</a></h3>
<div class="level3">
@ -253,7 +247,7 @@ By default, <acronym title="Domain Name System">DNS</acronym> domain is <code>ex
<pre class="code shell">sed -i 's/example\.com/ow2.org/g' /etc/lemonldap-ng/* /var/lib/lemonldap-ng/conf/lmConf-1 /var/lib/lemonldap-ng/test/index.pl</pre>
</div>
<!-- SECTION "Change default DNS domain" [3187-3501] -->
<!-- SECTION "Change default DNS domain" [3066-3380] -->
<h3><a name="apache_virtual_host" id="apache_virtual_host">Apache virtual host</a></h3>
<div class="level3">
@ -275,7 +269,7 @@ Check Apache configuration and restart:
apachectl restart</pre>
</div>
<!-- SECTION "Apache virtual host" [3502-3896] -->
<!-- SECTION "Apache virtual host" [3381-3775] -->
<h3><a name="reload_virtual_host" id="reload_virtual_host">Reload virtual host</a></h3>
<div class="level3">
@ -292,7 +286,7 @@ To allow the manager to reload the configuration, register the reload virtual ho
</p>
</div>
<!-- SECTION "Reload virtual host" [3897-4198] -->
<!-- SECTION "Reload virtual host" [3776-4077] -->
<h3><a name="upgrade" id="upgrade">Upgrade</a></h3>
<div class="level3">
@ -326,7 +320,7 @@ The upgrade process will also have migrate old configuration files into <code>/e
</p>
</div>
<!-- SECTION "Upgrade" [4199-6708] -->
<!-- SECTION "Upgrade" [4078-6587] -->
<h3><a name="dns" id="dns">DNS</a></h3>
<div class="level3">
@ -353,7 +347,7 @@ Follow the <a href="../../documentation/1.4/start.html#configuration" class="wik
</p>
</div>
<!-- SECTION "DNS" [6709-6981] -->
<!-- SECTION "DNS" [6588-6860] -->
<h2><a name="file_location" id="file_location">File location</a></h2>
<div class="level2">
<ul>
@ -370,7 +364,7 @@ Follow the <a href="../../documentation/1.4/start.html#configuration" class="wik
</ul>
</div>
<!-- SECTION "File location" [6982-7338] -->
<!-- SECTION "File location" [6861-7217] -->
<h2><a name="build_your_packages" id="build_your_packages">Build your packages</a></h2>
<div class="level2">
@ -403,20 +397,5 @@ If you need it, you can rebuild RPMs:
rpmbuild -ta SOURCES/lemonldap-ng-VERSION.tar.gz
</pre>
<p>
<p><div class="notetip">If OmegaT is not installed on your system, you can skip French documentation packaging by modifying the macro in lemonldap-ng.<acronym title="specification">spec</acronym>:
</p>
<pre class="file">
%define build_fr_doc 0
</pre>
<p>
</div></p>
</p>
</div>
<!-- SECTION "Build your packages" [7339-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "Build your packages" [7218-] --></div><!-- closes <div class="dokuwiki export">-->

View File

@ -123,10 +123,12 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</li>
<li class="level1"><div class="li"> Cache::Memcached</div>
</li>
<li class="level1"><div class="li"> Mouse</div>
</li>
</ul>
</div>
<!-- SECTION "Core" [1021-1547] -->
<!-- SECTION "Core" [1021-1557] -->
<h3><a name="saml2" id="saml2">SAML2</a></h3>
<div class="level3">
<ul>
@ -137,7 +139,7 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</ul>
</div>
<!-- SECTION "SAML2" [1548-1617] -->
<!-- SECTION "SAML2" [1558-1627] -->
<h3><a name="cas_authentication_module" id="cas_authentication_module">CAS (authentication module)</a></h3>
<div class="level3">
<ul>
@ -146,7 +148,7 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</ul>
</div>
<!-- SECTION "CAS (authentication module)" [1618-1715] -->
<!-- SECTION "CAS (authentication module)" [1628-1725] -->
<h3><a name="openid" id="openid">OpenID</a></h3>
<div class="level3">
<ul>
@ -157,7 +159,7 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</ul>
</div>
<!-- SECTION "OpenID" [1716-1798] -->
<!-- SECTION "OpenID" [1726-1808] -->
<h3><a name="twitter" id="twitter">Twitter</a></h3>
<div class="level3">
<ul>
@ -166,7 +168,7 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</ul>
</div>
<!-- SECTION "Twitter" [1799-1835] -->
<!-- SECTION "Twitter" [1809-1845] -->
<h3><a name="pod_unit_tests" id="pod_unit_tests">POD unit tests</a></h3>
<div class="level3">
<ul>
@ -177,7 +179,7 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</ul>
</div>
<!-- SECTION "POD unit tests" [1836-1897] -->
<!-- SECTION "POD unit tests" [1846-1907] -->
<h3><a name="smtp_reset_password_by_mail" id="smtp_reset_password_by_mail">SMTP / Reset password by mail</a></h3>
<div class="level3">
<ul>
@ -196,7 +198,7 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</ul>
</div>
<!-- SECTION "SMTP / Reset password by mail" [1898-2045] -->
<!-- SECTION "SMTP / Reset password by mail" [1908-2055] -->
<h2><a name="other" id="other">Other</a></h2>
<div class="level2">
<ul>
@ -207,42 +209,31 @@ You can use LemonLDAP::NG in an heterogeneous world: the authentication portal a
</ul>
</div>
<!-- SECTION "Other" [2046-2262] -->
<!-- SECTION "Other" [2056-2272] -->
<h2><a name="install_dependencies_on_your_system" id="install_dependencies_on_your_system">Install dependencies on your system</a></h2>
<div class="level2">
</div>
<!-- SECTION "Install dependencies on your system" [2263-2312] -->
<!-- SECTION "Install dependencies on your system" [2273-2322] -->
<h3><a name="apt-get" id="apt-get">APT-GET</a></h3>
<div class="level3">
<pre class="code">
apt-get install apache2 libapache2-mod-perl2 libapache-session-perl libnet-ldap-perl libcache-cache-perl libdbi-perl perl-modules libwww-perl libcache-cache-perl libxml-simple-perl libsoap-lite-perl libhtml-template-perl libregexp-assemble-perl libjs-jquery libxml-libxml-perl libcrypt-rijndael-perl libio-string-perl libxml-libxslt-perl libconfig-inifiles-perl libjson-perl libstring-random-perl libemail-date-format-perl libmime-lite-perl libcrypt-openssl-rsa-perl libdigest-hmac-perl libclone-perl libauthen-sasl-perl libnet-cidr-lite-perl libcrypt-openssl-x509-perl libauthcas-perl libtest-pod-perl libtest-mockobject-perl libauthen-captcha-perl libnet-openid-consumer-perl libnet-openid-server-perl libunicode-string-perl libconvert-pem-perl
apt-get install apache2 libapache2-mod-perl2 libapache-session-perl libnet-ldap-perl libcache-cache-perl libdbi-perl perl-modules libwww-perl libcache-cache-perl libxml-simple-perl libsoap-lite-perl libhtml-template-perl libregexp-assemble-perl libjs-jquery libxml-libxml-perl libcrypt-rijndael-perl libio-string-perl libxml-libxslt-perl libconfig-inifiles-perl libjson-perl libstring-random-perl libemail-date-format-perl libmime-lite-perl libcrypt-openssl-rsa-perl libdigest-hmac-perl libclone-perl libauthen-sasl-perl libnet-cidr-lite-perl libcrypt-openssl-x509-perl libauthcas-perl libtest-pod-perl libtest-mockobject-perl libauthen-captcha-perl libnet-openid-consumer-perl libnet-openid-server-perl libunicode-string-perl libconvert-pem-perl libmouse-perl
</pre>
</div>
<!-- SECTION "APT-GET" [2313-3095] -->
<!-- SECTION "APT-GET" [2323-3119] -->
<h3><a name="yum" id="yum">YUM</a></h3>
<div class="level3">
<p>
Choose a repository which hosted <acronym title="Practical Extraction and Report Language">Perl</acronym> dependencies, for example:
</p>
<ul>
<li class="level1"><div class="li"> <a href="http://fedoraproject.org/wiki/EPEL/" class="urlextern" title="http://fedoraproject.org/wiki/EPEL/" rel="nofollow">EPEL</a> repository, you can activate this repository: <a href="http://fedoraproject.org/wiki/EPEL/FAQ#howtouse" class="urlextern" title="http://fedoraproject.org/wiki/EPEL/FAQ#howtouse" rel="nofollow">http://fedoraproject.org/wiki/EPEL/FAQ#howtouse</a></div>
</li>
<li class="level1"><div class="li"> <a href="https://rpmrepo.org/" class="urlextern" title="https://rpmrepo.org/" rel="nofollow">RPMForge</a> repository, you can activate this repository: <a href="https://rpmrepo.org/RPMforge/Using" class="urlextern" title="https://rpmrepo.org/RPMforge/Using" rel="nofollow">https://rpmrepo.org/RPMforge/Using</a></div>
</li>
</ul>
<p>
<p><div class="notetip">We recommend using EPEL repository.
<p><div class="notetip">You need <a href="http://fedoraproject.org/wiki/EPEL/" class="urlextern" title="http://fedoraproject.org/wiki/EPEL/" rel="nofollow">EPEL</a> repository. See how you can activate this repository: <a href="http://fedoraproject.org/wiki/EPEL/FAQ#howtouse" class="urlextern" title="http://fedoraproject.org/wiki/EPEL/FAQ#howtouse" rel="nofollow">http://fedoraproject.org/wiki/EPEL/FAQ#howtouse</a>
</div></p>
</p>
<pre class="code">
yum install httpd mod_perl perl-Apache-Session perl-LDAP perl-XML-SAX perl-XML-NamespaceSupport perl-HTML-Template perl-Regexp-Assemble perl-Error perl-IPC-ShareLite perl-Cache-Cache perl-FreezeThaw perl-XML-Simple perl-version perl-CGI-Session perl-DBD-Pg perl-XML-LibXML-Common perl-BSD-Resource perl-XML-LibXML perl-Crypt-Rijndael perl-IO-String perl-XML-LibXSLT perl-SOAP-Lite perl-Config-IniFiles perl-JSON perl-Digest-HMAC perl-String-Random perl-MIME-Lite perl-Email-Date-Format perl-Crypt-OpenSSL-RSA perl-Crypt-OpenSSL-X509 perl-Clone perl-Authen-SASL perl-Log-Log4perl perl-Unicode-String perl-Net-CIDR-Lite perl-Cache-Memcached perl-Convert-PEM
yum install httpd mod_perl perl-Apache-Session perl-LDAP perl-XML-SAX perl-XML-NamespaceSupport perl-HTML-Template perl-Regexp-Assemble perl-Error perl-IPC-ShareLite perl-Cache-Cache perl-FreezeThaw perl-XML-Simple perl-version perl-CGI-Session perl-DBD-Pg perl-XML-LibXML-Common perl-BSD-Resource perl-XML-LibXML perl-Crypt-Rijndael perl-IO-String perl-XML-LibXSLT perl-SOAP-Lite perl-Config-IniFiles perl-JSON perl-Digest-HMAC perl-String-Random perl-MIME-Lite perl-Email-Date-Format perl-Crypt-OpenSSL-RSA perl-Crypt-OpenSSL-X509 perl-Clone perl-Authen-SASL perl-Log-Log4perl perl-Unicode-String perl-Net-CIDR-Lite perl-Cache-Memcached perl-Convert-PEM perl-Mouse
</pre>
</div>
<!-- SECTION "YUM" [3096-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "YUM" [3120-] --></div><!-- closes <div class="dokuwiki export">-->

View File

@ -82,6 +82,11 @@ Create sessions table:
a_session blob
<span class="br0">&#41;</span>;</pre>
<p>
<p><div class="noteimportant">Change char(32) by char(64) if you use the now recommanded SHA256 hash algorithm. See <a href="../../documentation/current/sessions.html" class="wikilink1" title="documentation:latest:sessions">Sessions</a> for more details
</div></p>
</p>
</div>
<h4><a name="postgresql" id="postgresql">PostgreSQL</a></h4>
@ -126,8 +131,13 @@ lemonldap-ng=&gt; create table sessions ( id char(32) not null primary key, a_se
lemonldap-ng=&gt; q
</pre>
<p>
<p><div class="noteimportant">Change char(32) by char(64) if you use the now recommanded SHA256 hash algorithm. See <a href="../../documentation/current/sessions.html" class="wikilink1" title="documentation:latest:sessions">Sessions</a> for more details
</div></p>
</p>
</div>
<!-- SECTION "Prepare the database" [488-1607] -->
<!-- SECTION "Prepare the database" [488-1947] -->
<h3><a name="manager" id="manager">Manager</a></h3>
<div class="level3">
@ -185,7 +195,7 @@ If you choose to use MySQL, read <a href="../../documentation/1.4/performances.h
</p>
</div>
<!-- SECTION "Manager" [1608-2858] -->
<!-- SECTION "Manager" [1948-3198] -->
<h2><a name="security" id="security">Security</a></h2>
<div class="level2">
@ -199,4 +209,4 @@ You can also use different user/password for your servers by overriding paramete
</p>
</div>
<!-- SECTION "Security" [2859-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "Security" [3199-] --></div><!-- closes <div class="dokuwiki export">-->

View File

@ -32,7 +32,7 @@
</div>
<!-- SECTION "Packages and archives" [25-59] -->
<h3><a name="stable_version_140" id="stable_version_140">Stable version (1.4.0)</a></h3>
<h3><a name="stable_version_142" id="stable_version_142">Stable version (1.4.2)</a></h3>
<div class="level3">
</div>
@ -40,7 +40,7 @@
<h4><a name="tarball" id="tarball">Tarball</a></h4>
<div class="level4">
<ul>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=19998" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=19998" rel="nofollow">Tarball</a></div>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20227" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20227" rel="nofollow">Tarball</a></div>
</li>
</ul>
@ -71,9 +71,9 @@ You can:
<h5><a name="rhelcentos_5" id="rhelcentos_5">RHEL/CentOS 5</a></h5>
<div class="level5">
<ul>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=19999" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=19999" rel="nofollow">RPM bundle</a></div>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20228" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20228" rel="nofollow">RPM bundle</a></div>
</li>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20000" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20000" rel="nofollow">Source RPM</a></div>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20229" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20229" rel="nofollow">Source RPM</a></div>
</li>
</ul>
@ -82,9 +82,9 @@ You can:
<h5><a name="rhelcentos_6" id="rhelcentos_6">RHEL/CentOS 6</a></h5>
<div class="level5">
<ul>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20001" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20001" rel="nofollow">RPM bundle</a></div>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20230" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20230" rel="nofollow">RPM bundle</a></div>
</li>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20002" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20002" rel="nofollow">Source RPM</a></div>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20231" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20231" rel="nofollow">Source RPM</a></div>
</li>
</ul>
@ -113,12 +113,12 @@ You can:
</p>
<ul>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20003" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20003" rel="nofollow">DEB bundle</a></div>
<li class="level1"><div class="li"> <a href="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20232" class="urlextern" title="http://forge.ow2.org/project/download.php?group_id=274&amp;file_id=20232" rel="nofollow">DEB bundle</a></div>
</li>
</ul>
</div>
<!-- SECTION "Stable version (1.4.0)" [60-1226] -->
<!-- SECTION "Stable version (1.4.2)" [60-1226] -->
<h3><a name="older_versions" id="older_versions">Older versions</a></h3>
<div class="level3">

View File

@ -35,7 +35,9 @@ Some articles published somewhere in the world wide web.
<h2><a name="generic_articles" id="generic_articles">Generic articles</a></h2>
<div class="level2">
<ul>
<li class="level1"><div class="li"> 6 avril 2012: <a href="http://herve.vanmeerbeck.free.fr/?p=53" class="urlextern" title="http://herve.vanmeerbeck.free.fr/?p=53" rel="nofollow">Configurer LemonLDAP::NG comme serveur CAS</a> <a href="/_detail/icons/flags/fr.png?id=press" class="media" title="icons:flags:fr.png"><img src="../media/icons/flags/fr.png" class="media" alt="" /></a></div>
<li class="level1"><div class="li"> 10 Nov 2014: <a href="http://www.ow2.org/view/Press_Releases/OW2_announces_OW2con_14_Best_Project_Awards" class="urlextern" title="http://www.ow2.org/view/Press_Releases/OW2_announces_OW2con_14_Best_Project_Awards" rel="nofollow">LemonLDAP::NG receives OW2 Community Award</a> <a href="/_detail/icons/flags/us.png?id=press" class="media" title="icons:flags:us.png"><img src="../media/icons/flags/us.png" class="media" alt="" /></a></div>
</li>
<li class="level1"><div class="li"> 6 Apr 2012: <a href="http://herve.vanmeerbeck.free.fr/?p=53" class="urlextern" title="http://herve.vanmeerbeck.free.fr/?p=53" rel="nofollow">Configurer LemonLDAP::NG comme serveur CAS</a> <a href="/_detail/icons/flags/fr.png?id=press" class="media" title="icons:flags:fr.png"><img src="../media/icons/flags/fr.png" class="media" alt="" /></a></div>
</li>
<li class="level1"><div class="li"> 31 Jan 2012: <a href="http://www.fitzdsl.net/?p=286" class="urlextern" title="http://www.fitzdsl.net/?p=286" rel="nofollow">Configuration de LemonLDAP::NG avec Google Authenticator</a> <a href="/_detail/icons/flags/fr.png?id=press" class="media" title="icons:flags:fr.png"><img src="../media/icons/flags/fr.png" class="media" alt="" /></a></div>
</li>
@ -46,7 +48,34 @@ Some articles published somewhere in the world wide web.
</ul>
</div>
<!-- SECTION "Generic articles" [80-794] -->
<!-- SECTION "Generic articles" [80-964] -->
<h2><a name="lemonldapng_14_release" id="lemonldapng_14_release">LemonLDAP::NG 1.4 release</a></h2>
<div class="level2">
<ul>
<li class="level1"><div class="li"> <a href="https://linuxfr.org/news/sortie-de-lemonldap-ng-1-4" class="urlextern" title="https://linuxfr.org/news/sortie-de-lemonldap-ng-1-4" rel="nofollow">LinuxFR</a> <a href="/_detail/icons/flags/fr.png?id=press" class="media" title="icons:flags:fr.png"><img src="../media/icons/flags/fr.png" class="media" alt="" /></a></div>
</li>
</ul>
</div>
<!-- SECTION "LemonLDAP::NG 1.4 release" [965-1097] -->
<h2><a name="lemonldapng_13_release" id="lemonldapng_13_release">LemonLDAP::NG 1.3 release</a></h2>
<div class="level2">
<ul>
<li class="level1"><div class="li"> <a href="https://linuxfr.org/news/sortie-de-lemonldap-ng-1-3" class="urlextern" title="https://linuxfr.org/news/sortie-de-lemonldap-ng-1-3" rel="nofollow">LinuxFR</a> <a href="/_detail/icons/flags/fr.png?id=press" class="media" title="icons:flags:fr.png"><img src="../media/icons/flags/fr.png" class="media" alt="" /></a></div>
</li>
</ul>
</div>
<!-- SECTION "LemonLDAP::NG 1.3 release" [1098-1230] -->
<h2><a name="lemonldapng_12_release" id="lemonldapng_12_release">LemonLDAP::NG 1.2 release</a></h2>
<div class="level2">
<ul>
<li class="level1"><div class="li"> <a href="http://linuxfr.org/news/sortie-de-lemonldap-ng-1-2" class="urlextern" title="http://linuxfr.org/news/sortie-de-lemonldap-ng-1-2" rel="nofollow">LinuxFR</a> <a href="/_detail/icons/flags/fr.png?id=press" class="media" title="icons:flags:fr.png"><img src="../media/icons/flags/fr.png" class="media" alt="" /></a></div>
</li>
</ul>
</div>
<!-- SECTION "LemonLDAP::NG 1.2 release" [1231-1362] -->
<h2><a name="lemonldapng_11_release" id="lemonldapng_11_release">LemonLDAP::NG 1.1 release</a></h2>
<div class="level2">
<ul>
@ -63,7 +92,7 @@ Some articles published somewhere in the world wide web.
</ul>
</div>
<!-- SECTION "LemonLDAP::NG 1.1 release" [795-1410] -->
<!-- SECTION "LemonLDAP::NG 1.1 release" [1363-1978] -->
<h2><a name="lemonldapng_10_release" id="lemonldapng_10_release">LemonLDAP::NG 1.0 release</a></h2>
<div class="level2">
<ul>
@ -78,4 +107,4 @@ Some articles published somewhere in the world wide web.
</ul>
</div>
<!-- SECTION "LemonLDAP::NG 1.0 release" [1411-] --></div><!-- closes <div class="dokuwiki export">-->
<!-- SECTION "LemonLDAP::NG 1.0 release" [1979-] --></div><!-- closes <div class="dokuwiki export">-->

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,11 @@
29/06/14 22:13
18/12/14 17:51
Données du projet
Segments Mots Caractères (sans espaces) Caractères (avec espaces)
Total : 19305 97886 674892 740280
Restants : 619 4603 32644 35822
Segments uniques : 6103 40602 263719 293487
Segments uniques restants : 288 2190 15107 16647
Total : 19426 98921 681239 747227
Restants : 760 6080 41011 45157
Segments uniques : 6157 41187 267138 297179
Segments uniques restants : 366 3030 19880 21906
Statistiques par fichiers :
@ -66,22 +66,22 @@ pages/documentation/1.4/configvhost.html 93
pages/documentation/1.4/customfunctions.html 51 1 32 1 263 11 214 11 1830 110 1351 110 2001 115 1511 115
pages/documentation/1.4/error.html 66 0 57 0 488 0 471 0 2707 0 2574 0 3119 0 2981 0
pages/documentation/1.4/exportedvars.html 55 5 33 5 414 70 365 70 2499 382 2048 382 2832 447 2372 447
pages/documentation/1.4/extendedfunctions.html 121 0 71 0 682 0 506 0 4341 0 2902 0 4826 0 3308 0
pages/documentation/1.4/extendedfunctions.html 160 28 93 27 806 115 591 114 5285 754 3452 750 5846 838 3919 834
pages/documentation/1.4/fastcgi.html 26 0 13 0 141 0 114 0 854 0 649 0 941 0 731 0
pages/documentation/1.4/federationproxy.html 40 0 19 0 152 0 102 0 1194 0 713 0 1264 0 777 0
pages/documentation/1.4/fileconfbackend.html 18 0 8 0 87 0 69 0 593 0 417 0 652 0 475 0
pages/documentation/1.4/filesessionbackend.html 32 0 15 0 168 0 137 0 1087 0 809 0 1183 0 903 0
pages/documentation/1.4/formreplay.html 80 1 49 0 485 4 409 0 3063 46 2451 0 3397 48 2761 0
pages/documentation/1.4/formreplay.html 79 22 50 22 621 368 552 368 3546 1735 3015 1735 4041 2071 3478 2071
pages/documentation/1.4/handlerauthbasic.html 31 2 16 2 187 12 158 12 1211 120 926 120 1351 123 1060 123
pages/documentation/1.4/header_remote_user_conversion.html 42 1 19 0 235 4 182 0 1683 46 1170 0 1846 48 1317 0
pages/documentation/1.4/highavailability.html 24 0 14 0 132 0 110 0 981 0 810 0 1057 0 882 0
pages/documentation/1.4/idpcas.html 63 0 30 0 386 0 303 0 2355 0 1591 0 2647 0 1856 0
pages/documentation/1.4/idpopenid.html 88 0 41 0 517 0 351 0 3350 0 2015 0 3674 0 2291 0
pages/documentation/1.4/idpsaml.html 127 15 38 10 720 110 370 90 4786 728 2015 501 5257 794 2319 567
pages/documentation/1.4/idpsaml.html 135 22 44 17 830 222 472 202 5698 1634 2865 1407 6232 1766 3226 1539
pages/documentation/1.4/installdeb.html 107 1 84 1 725 6 669 6 5248 57 4804 57 5843 62 5381 62
pages/documentation/1.4/installrpm.html 136 2 66 2 989 24 484 24 6949 132 3256 132 7742 153 3602 153
pages/documentation/1.4/installtarball.html 103 3 78 3 591 25 523 25 3824 130 3309 130 4212 152 3669 152
pages/documentation/1.4/internalproxy.html 42 0 19 0 195 0 139 0 1391 0 934 0 1519 0 1042 0
pages/documentation/1.4/internalproxy.html 42 0 22 0 195 0 148 0 1391 0 1007 0 1519 0 1117 0
pages/documentation/1.4/jsonfileconfbackend.html 19 0 3 0 90 0 24 0 642 0 151 0 700 0 170 0
pages/documentation/1.4/ldapconfbackend.html 59 0 33 0 386 0 320 0 2542 0 1990 0 2798 0 2210 0
pages/documentation/1.4/ldapminihowto.html 24 0 10 0 85 0 54 0 631 0 341 0 673 0 378 0
@ -176,18 +176,18 @@ pages/documentation/current/configvhost.html 93
pages/documentation/current/customfunctions.html 51 1 0 0 263 11 0 0 1830 110 0 0 2001 115 0 0
pages/documentation/current/error.html 66 0 0 0 488 0 0 0 2707 0 0 0 3119 0 0 0
pages/documentation/current/exportedvars.html 55 5 0 0 414 70 0 0 2499 382 0 0 2832 447 0 0
pages/documentation/current/extendedfunctions.html 121 0 0 0 682 0 0 0 4341 0 0 0 4826 0 0 0
pages/documentation/current/extendedfunctions.html 160 28 0 0 806 115 0 0 5285 754 0 0 5846 838 0 0
pages/documentation/current/fastcgi.html 26 0 0 0 141 0 0 0 854 0 0 0 941 0 0 0
pages/documentation/current/federationproxy.html 40 0 0 0 152 0 0 0 1194 0 0 0 1264 0 0 0
pages/documentation/current/fileconfbackend.html 18 0 0 0 87 0 0 0 593 0 0 0 652 0 0 0
pages/documentation/current/filesessionbackend.html 32 0 0 0 168 0 0 0 1087 0 0 0 1183 0 0 0
pages/documentation/current/formreplay.html 80 1 0 0 485 4 0 0 3063 46 0 0 3397 48 0 0
pages/documentation/current/formreplay.html 79 22 0 0 621 368 0 0 3546 1735 0 0 4041 2071 0 0
pages/documentation/current/handlerauthbasic.html 31 2 0 0 187 12 0 0 1211 120 0 0 1351 123 0 0
pages/documentation/current/header_remote_user_conversion.html 42 1 0 0 235 4 0 0 1683 46 0 0 1846 48 0 0
pages/documentation/current/highavailability.html 24 0 0 0 132 0 0 0 981 0 0 0 1057 0 0 0
pages/documentation/current/idpcas.html 63 0 0 0 386 0 0 0 2355 0 0 0 2647 0 0 0
pages/documentation/current/idpopenid.html 88 0 0 0 517 0 0 0 3350 0 0 0 3674 0 0 0
pages/documentation/current/idpsaml.html 127 15 0 0 720 110 0 0 4786 728 0 0 5257 794 0 0
pages/documentation/current/idpsaml.html 135 22 0 0 830 222 0 0 5698 1634 0 0 6232 1766 0 0
pages/documentation/current/installdeb.html 107 1 0 0 725 6 0 0 5248 57 0 0 5843 62 0 0
pages/documentation/current/installrpm.html 136 2 0 0 989 24 0 0 6949 132 0 0 7742 153 0 0
pages/documentation/current/installtarball.html 103 3 0 0 591 25 0 0 3824 130 0 0 4212 152 0 0
@ -242,5 +242,5 @@ pages/download.html 74
pages/menu1.html 22 0 11 0 26 0 11 0 224 0 120 0 225 0 120 0
pages/press.html 102 0 39 0 449 0 194 0 3277 0 1428 0 3333 0 1481 0
pages/references.html 141 8 80 8 342 29 221 29 2900 232 1844 232 2997 245 1904 245
pages/screenshots.html 229 0 145 0 1097 0 979 0 9286 0 7722 0 9334 0 7769 0
pages/screenshots.html 258 29 167 22 1392 295 1225 246 10955 1669 9104 1382 11003 1669 9151 1382
pages/translations.html 40 0 21 0 281 0 227 0 1714 0 1349 0 1895 0 1514 0