<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/trustheader/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Tue, 20 Feb 2018 21:02:20 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/trustheader/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Tue, 20 Feb 2018 21:02:20 -0000</pubDate><guid>https://sourceforge.net1c83c5a899ab7e8a4d9e481a14b05b630ee2e5b8</guid></item><item><title>Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v17
+++ v18
@@ -15,7 +15,7 @@

 ### Configuration Examples:
-1. **accept any userid**
+* **accept userid from http header field**

 ~~~~~~~~~
     &amp;lt;Location cgi-bin=""&amp;gt;
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Tue, 20 Feb 2018 19:01:15 -0000</pubDate><guid>https://sourceforge.netcbe003fac0f165dc5b700a9f9d0e06c5c144182a</guid></item><item><title>Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v16
+++ v17
@@ -25,7 +25,7 @@
         # mod_auth_trustheader.c
         AuthType TrustHeader
         AuthTrustHeaderProvider anon
-        AuthTrustHeader X-USERID
+        AuthTrustHeader %{HTTP:X-USERID}
         # mod_authn_anon.c
         Anonymous '*'
         Anonymous_MustGiveEmail off
@@ -48,7 +48,7 @@
         # mod_auth_trustheader.c
         AuthType TrustHeader
         AuthTrustHeaderProvider anon
-        AuthTrustHeader X-USERID
+        AuthTrustHeader %{HTTP:X-USERID}
         # mod_authn_anon.c
         Anonymous '*'
         Anonymous_MustGiveEmail off
@@ -62,3 +62,27 @@
 ~~~~~~~~~
  

+* **accept only PKI certificates with serial number present in my ldap** 
+
+~~~~~~~~~
+    &amp;lt;Location cgi-bin=""&amp;gt;
+        # only trust client certificates of my client CA
+        SSLVerfiyClient require
+        SSLRequire ( %{SSL_CLIENT_I_DN} eq "DN of my client CA" )
+        # mod_auth_trustheader.c
+        AuthType TrustHeader
+        AuthTrustHeaderProvider anon
+        AuthTrustHeader %{SSL:SSL_CLIENT_M_SERIAL}
+        # mod_authn_anon.c
+        Anonymous '*'
+        Anonymous_MustGiveEmail off
+        Anonymous_NoUserId off
+        Anonymous_VerifyEmail  off
+        Anonymous_LogEmail off
+        # mod_authnz_ldap
+        # search entry in ldap by attribute "pkiserial"
+        AuthLDAPURL ldap://ldaphost:389/o=yourorg?pkiserial,uid?sub
+        Require ldap-group cn=mygroup,o=yourorg
+    &amp;lt;/Location&amp;gt;
+~~~~~~~~~
+ 
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Wed, 17 Jun 2015 19:21:35 -0000</pubDate><guid>https://sourceforge.netf7e4fb5cb4499ef7d0cbe0d4507cd4b55771629c</guid></item><item><title>Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Wed, 17 Jun 2015 19:06:38 -0000</pubDate><guid>https://sourceforge.net5f96bc4f70422eb52f3ee5309efdbbb6ba7340ce</guid></item><item><title>WikiPage Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;pre&gt;&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Tue, 31 Jul 2012 20:52:15 -0000</pubDate><guid>https://sourceforge.net84fb82240cee50604e7436fca0602909ee77cb46</guid></item><item><title>WikiPage Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;pre&gt;--- v13 
+++ v14 
@@ -10,6 +10,10 @@
 Here we are working with multiple auth providers as described in the [httpd.apache 2.4 Docu](http://httpd.apache.org/docs/2.4/howto/auth.html#multprovider "Authentication, Authorization and Access Control for HTTPD Server").   
 *works also in httpd.apache 2.2*
 
+### Installation and Configuration
+[mod_auth_trustheader documentation](http://sourceforge.net/p/trustheader/wiki/Home/attachment/mod_auth_trustheader.html) attached to this wiki space
+
+
 ### Configuration Examples:
 1. **accept any userid**
 
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Sun, 15 Apr 2012 20:06:42 -0000</pubDate><guid>https://sourceforge.netb5d4c1064c61900de449f30742257f08e4d6cf00</guid></item><item><title>WikiPage Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;pre&gt;--- v12 
+++ v13 
@@ -2,19 +2,15 @@
 ====================
 
 
-### Content ###
-
-
+
 * Project Admins: [[project_admins]]
-* [[download_button]] 
-
-&amp;nbsp;
-
-### Related Documentation:
+
+
+### Related Documentation: ###
 Here we are working with multiple auth providers as described in the [httpd.apache 2.4 Docu](http://httpd.apache.org/docs/2.4/howto/auth.html#multprovider "Authentication, Authorization and Access Control for HTTPD Server").   
 *works also in httpd.apache 2.2*
 
 ### Configuration Examples:
 1. **accept any userid**
 
 ~~~~~~~~~
@@ -32,12 +28,12 @@
         Anonymous_NoUserId off
         Anonymous_VerifyEmail  off
         Anonymous_LogEmail off
         require valid-user
     &lt;/Location&gt;
 ~~~~~~~~~
 &amp;nbsp;
 
 
 * **accept only userids also present in my ldap**
 
 ~~~~~~~~~
@@ -55,11 +51,10 @@
         Anonymous_NoUserId off
         Anonymous_VerifyEmail  off
         Anonymous_LogEmail off
         # mod_authnz_ldap
         AuthLDAPURL ldap://ldaphost:389/o=yourorg?uid?sub
         Require ldap-group cn=mygroup,o=yourorg
     &lt;/Location&gt;
 ~~~~~~~~~
 &amp;nbsp;
 
-The wiki uses [Markdown](/p/trustheader/wiki/markdown_syntax/) syntax.
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Sun, 15 Apr 2012 19:48:24 -0000</pubDate><guid>https://sourceforge.net75cb6cbfb6de6a4fede5c419b4d848bdb2470ae8</guid></item><item><title>WikiPage Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;pre&gt;--- v11 
+++ v12 
@@ -8,6 +8,7 @@
 * Project Admins: [[project_admins]]
 * [[download_button]] 
 
+&amp;nbsp;
 
 ### Related Documentation:
 Here we are working with multiple auth providers as described in the [httpd.apache 2.4 Docu](http://httpd.apache.org/docs/2.4/howto/auth.html#multprovider "Authentication, Authorization and Access Control for HTTPD Server").   
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Sun, 15 Apr 2012 19:46:50 -0000</pubDate><guid>https://sourceforge.net72371d566a05e57dceb41a737e412da7a65c68a4</guid></item><item><title>WikiPage Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;pre&gt;--- v10 
+++ v11 
@@ -6,7 +6,8 @@
 
 
 * Project Admins: [[project_admins]]
-* Downloads: [[download_button]] 
+* [[download_button]] 
+
 
 ### Related Documentation:
 Here we are working with multiple auth providers as described in the [httpd.apache 2.4 Docu](http://httpd.apache.org/docs/2.4/howto/auth.html#multprovider "Authentication, Authorization and Access Control for HTTPD Server").   
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Sun, 15 Apr 2012 19:45:46 -0000</pubDate><guid>https://sourceforge.net36f0c66bac7e97c69b8844b9ddb265cfaf3622cd</guid></item><item><title>WikiPage Home modified by Hendrik</title><link>https://sourceforge.net/p/trustheader/wiki/Home/</link><description>&lt;pre&gt;--- v9 
+++ v10 
@@ -6,7 +6,7 @@
 
 
 * Project Admins: [[project_admins]]
-* Downloads: [[download_button]] (project is just born - downloads coming soon)
+* Downloads: [[download_button]] 
 
 ### Related Documentation:
 Here we are working with multiple auth providers as described in the [httpd.apache 2.4 Docu](http://httpd.apache.org/docs/2.4/howto/auth.html#multprovider "Authentication, Authorization and Access Control for HTTPD Server").   
&lt;/pre&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Hendrik</dc:creator><pubDate>Tue, 10 Apr 2012 22:45:33 -0000</pubDate><guid>https://sourceforge.net7938320dd88387b3376419c79821e22c0900c866</guid></item></channel></rss>