<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SPNEGO For nginx - a start, at least</title>
	<atom:link href="http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least</link>
	<description>&#34;Lazy people are efficient.&#34; - My boss.</description>
	<lastBuildDate>Mon, 30 Apr 2012 14:27:02 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: John</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-42605</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 03 Mar 2012 23:13:02 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-42605</guid>
		<description>nginx-version is as follows:

CentOS release 5.7 (Final)
nginx: nginx version: nginx/1.0.10
nginx: built by gcc 4.1.2 20080704 (Red Hat 4.1.2-51)
nginx: TLS SNI support disabled
nginx: configure arguments: --prefix=/opt/nginx --with-http_ssl_module --with-cc-opt=-Wno-error
--without-http_rewrite_module --add-module=/usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11/ext/nginx
---------------------------------------------------------------------------------
I created a text file with the configure parameters, but can&#039;t seem to find it.  I see the following in the /opt/nginx-1.0.10/objs/Makefile though (I had to put the module @ /usr/local/lib64/spnego-http-auth-nginx-module):

 objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o \

        objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o \
        objs/ngx_modules.o \
        -lpthread -lcrypt /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11/ext/nginx/../common/libpassenger_common.a /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11/ext/nginx/../c
ommon/libboost_oxt.a -lstdc++ -lpthread -lm -lspnegohelp -lgssapi_krb5 -lssl -lcrypto -ldl -lz

objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o: $(ADDON_DEPS) \
        /usr/local/lib64/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.c
        $(CC) -c $(CFLAGS)  $(ALL_INCS) \
                -o objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o \
                /usr/local/lib64/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.c

----------------------------------------------------------------------------------
My nginx.conf file has the following:

user  appidentity;
worker_processes  2;

#error_log  logs/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;

#pid        logs/nginx.pid;


events {
    worker_connections  1024;
}


http {
    passenger_root /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11;
    passenger_ruby /usr/local/rvm/wrappers/ruby-1.9.2-p290/ruby;

    include       mime.types;
    default_type  application/octet-stream;

    #log_format  main  &#039;$remote_addr - $remote_user [$time_local] &quot;$request&quot; &#039;
    #                  &#039;$status $body_bytes_sent &quot;$http_referer&quot; &#039;
    #                  &#039;&quot;$http_user_agent&quot; &quot;$http_x_forwarded_for&quot;&#039;;

    #access_log  logs/access.log  main;

    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;

    gzip  on;
    gzip_http_version 1.1;
    gzip_comp_level 9;
    gzip_types    text/plain text/css
                  application/x-javascript text/xml
                  application/xml application/xml+rss
                  text/javascript;

    server {
        listen              80;
        listen              443 ssl;
        server_name         servername.sub.domain.com;
        ssl_certificate     /etc/ssl/servername.sub.domain.com.crt;
        ssl_certificate_key /etc/ssl/servername.sub.domain.com.key;
 root                /home/appidentity/apps/ticketee/current/public;
        passenger_enabled   on;
        passenger_set_cgi_param HTTP_X_FORWARDED_PROTO $scheme;
        auth_gss on;
        auth_gss_realm sub.domain.com;
        auth_gss_keytab /home/ticketeeapp.com/apps/ticketee/shared/http_servername.keytab;
        auth_gss_service_name HTTP;
        passenger_set_cgi_param REMOTE_USER $remote_user;
        #charset koi8-r;

        #access_log  logs/host.access.log  main;

        location /admin/incomings {
             #root   html;
             #index  index.html index.htm;
             auth_gss off;
             allow    127.0.0.1;
             deny     all;
             passenger_enabled on;
        }

        #error_page  404              /404.html;

        # redirect server error pages to the static page /50x.html
        #
        #error_page   500 502 503 504  /50x.html;
        #location = /50x.html {
        #    root   html;
        #}

        # proxy the PHP scripts to Apache listening on 127.0.0.1:80
        #
        #location ~ \.php$ {
        #    proxy_pass   http://127.0.0.1;
        #}

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
        #    root           html;
        #    fastcgi_pass   127.0.0.1:9000;
        #    fastcgi_index  index.php;
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache&#039;s document root
        # concurs with nginx&#039;s one
        #
        #    include        fastcgi_params;
        #}

        # deny access to .htaccess files, if Apache&#039;s document root
        # concurs with nginx&#039;s one
        #
        #location ~ /\.ht {
        #    deny  all;
        #}
    }


    # another virtual host using mix of IP-, name-, and port-based configuration
    #
    #server {
    #    listen       8000;
    #    listen       somename:8080;
    #    server_name  somename  alias  another.alias;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}


    # HTTPS server
    #
    #server {
    #    listen       443;
    #    server_name  localhost;

    #    ssl                  on;
    #    ssl_certificate      cert.pem;
    #    ssl_certificate_key  cert.key;

    #    ssl_session_timeout  5m;

    #    ssl_protocols  SSLv2 SSLv3 TLSv1;
    #    ssl_ciphers  HIGH:!aNULL:!MD5;
    #    ssl_prefer_server_ciphers   on;

    #    location / {
    #        root   html;
    #        index  index.html index.htm;
    #    }
    #}

}</description>
		<content:encoded><![CDATA[<p>nginx-version is as follows:</p>
<p>CentOS release 5.7 (Final)<br />
nginx: nginx version: nginx/1.0.10<br />
nginx: built by gcc 4.1.2 20080704 (Red Hat 4.1.2-51)<br />
nginx: TLS SNI support disabled<br />
nginx: configure arguments: --prefix=/opt/nginx --with-http_ssl_module --with-cc-opt=-Wno-error<br />
--without-http_rewrite_module --add-module=/usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11/ext/nginx<br />
-------- -------------------------------------------------------------------------<br />
I created a text file with the configure parameters, but can't seem to find it.  I see the following in the /opt/nginx-1.0.10/objs/Makefile though (I had to put the module @ /usr/local/lib64/spnego-http-auth-nginx-module):</p>
<p> objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o \</p>
<p>        objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o \<br />
        objs/ngx_modules.o \<br />
        -lpthread -lcrypt /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11/ext/nginx/../common/libpassenger _common.a /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11/ext/nginx/../c<br />
ommon/libboost_o xt.a -lstdc++ -lpthread -lm -lspnegohelp -lgssapi_krb5 -lssl -lcrypto -ldl -lz</p>
<p>objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o: $(ADDON_DEPS) \<br />
        /usr/local/lib64/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.c<br />
        $(CC) -c $(CFLAGS)  $(ALL_INCS) \<br />
                -o objs/addon/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.o \<br />
                /usr/local/lib64/spnego-http-auth-nginx-module/ngx_http_auth_spnego_module.c</p>
<p>---------- ------------------------------------------------------------------------<br />
My nginx.conf file has the following:</p>
<p>user  appidentity;<br />
worker_processes  2;</p>
<p>#error_log  logs/error.log;<br />
#error_log  logs/error.log  notice;<br />
#error_log  logs/error.log  info;</p>
<p>#pid        logs/nginx.pid;</p>
<p>events {<br />
    worker_connections  1024;<br />
}</p>
<p>http {<br />
    passenger_root /usr/local/rvm/gems/ruby-1.9.2-p290/gems/passenger-3.0.11;<br />
    passenger_ruby /usr/local/rvm/wrappers/ruby-1.9.2-p290/ruby;</p>
<p>    include       mime.types;<br />
    default_type  application/octet-stream;</p>
<p>    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '<br />
    #                  '$status $body_bytes_sent "$http_referer" '<br />
    #                  '"$http_user_agent" "$http_x_forwarded_for"';</p>
<p>    #access_log  logs/access.log  main;</p>
<p>    sendfile        on;<br />
    #tcp_nopush     on;</p>
<p>    #keepalive_timeout  0;<br />
    keepalive_timeout  65;</p>
<p>    gzip  on;<br />
    gzip_http_version 1.1;<br />
    gzip_comp_level 9;<br />
    gzip_types    text/plain text/css<br />
                  application/x-javascript text/xml<br />
                  application/xml application/xml+rss<br />
                  text/javascript;</p>
<p>    server {<br />
        listen              80;<br />
        listen              443 ssl;<br />
        server_name         servername.sub.domain.com;<br />
        ssl_certificate     /etc/ssl/servername.sub.domain.com.crt;<br />
        ssl_certificate_key /etc/ssl/servername.sub.domain.com.key;<br />
 root                /home/appidentity/apps/ticketee/current/public;<br />
        passenger_enabled   on;<br />
        passenger_set_cgi_param HTTP_X_FORWARDED_PROTO $scheme;<br />
        auth_gss on;<br />
        auth_gss_realm sub.domain.com;<br />
        auth_gss_keytab /home/ticketeeapp.com/apps/ticketee/shared/http_servername.keytab;<br />
        auth_gss_service_name HTTP;<br />
        passenger_set_cgi_param REMOTE_USER $remote_user;<br />
        #charset koi8-r;</p>
<p>        #access_log  logs/host.access.log  main;</p>
<p>        location /admin/incomings {<br />
             #root   html;<br />
             #index  index.html index.htm;<br />
             auth_gss off;<br />
             allow    127.0.0.1;<br />
             deny     all;<br />
             passenger_enabled on;<br />
        }</p>
<p>        #error_page  404              /404.html;</p>
<p>        # redirect server error pages to the static page /50x.html<br />
        #<br />
        #error_page   500 502 503 504  /50x.html;<br />
        #location = /50x.html {<br />
        #    root   html;<br />
        #}</p>
<p>        # proxy the PHP scripts to Apache listening on 127.0.0.1:80<br />
        #<br />
        #location ~ \.php$ {<br />
        #    proxy_pass   <a href="http://127.0.0.1" rel="nofollow">http://127.0.0.1</a>;<br />
        #}</p>
<p>        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000<br />
        #<br />
        #location ~ \.php$ {<br />
        #    root           html;<br />
        #    fastcgi_pass   127.0.0.1:9000;<br />
        #    fastcgi_index  index.php;<br />
        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;<br />
        #    include        fastcgi_params;<br />
        #}</p>
<p>        # deny access to .htaccess files, if Apache's document root<br />
        # concurs with nginx's one<br />
        #<br />
        #    include        fastcgi_params;<br />
        #}</p>
<p>        # deny access to .htaccess files, if Apache's document root<br />
        # concurs with nginx's one<br />
        #<br />
        #location ~ /\.ht {<br />
        #    deny  all;<br />
        #}<br />
    }</p>
<p>    # another virtual host using mix of IP-, name-, and port-based configuration<br />
    #<br />
    #server {<br />
    #    listen       8000;<br />
    #    listen       somename:8080;<br />
    #    server_name  somename  alias  another.alias;</p>
<p>    #    location / {<br />
    #        root   html;<br />
    #        index  index.html index.htm;<br />
    #    }<br />
    #}</p>
<p>    # HTTPS server<br />
    #<br />
    #server {<br />
    #    listen       443;<br />
    #    server_name  localhost;</p>
<p>    #    ssl                  on;<br />
    #    ssl_certificate      cert.pem;<br />
    #    ssl_certificate_key  cert.key;</p>
<p>    #    ssl_session_timeout  5m;</p>
<p>    #    ssl_protocols  SSLv2 SSLv3 TLSv1;<br />
    #    ssl_ciphers  HIGH:!aNULL:!MD5;<br />
    #    ssl_prefer_server_ciphers   on;</p>
<p>    #    location / {<br />
    #        root   html;<br />
    #        index  index.html index.htm;<br />
    #    }<br />
    #}</p>
<p>}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-42600</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sat, 03 Mar 2012 19:20:56 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-42600</guid>
		<description>Hi Mike. Sorry I just saw your post. When I get to work today I&#039;ll post my configuration.</description>
		<content:encoded><![CDATA[<p>Hi Mike. Sorry I just saw your post. When I get to work today I'll post my configuration.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-41735</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Tue, 14 Feb 2012 19:12:44 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-41735</guid>
		<description>&lt;a href=&quot;#comment-41732&quot; rel=&quot;nofollow&quot;&gt;@John&lt;/a&gt; 

Would you be able to post your configuration?

Server OS, distro, kernel version, nginx version, libraries or package list, nginx configuration?

Obviously you can rename the specifics to your implementation, I would just love to know how you got a working configuration going as I have yet to be able to, however, the only network I have access to might be so complex that it might be impossible to &quot;test&quot; on to begin with :)

If you don&#039;t want to make it public, feel free to email me - mike@mike2k.com

I haven&#039;t really had any feedback on the module yet and would really like to try to get it matured more to be usable (especially in my own company&#039;s network)

Thanks!</description>
		<content:encoded><![CDATA[<p><a href="#comment-41732" rel="nofollow">@John</a> </p>
<p>Would you be able to post your configuration?</p>
<p>Server OS, distro, kernel version, nginx version, libraries or package list, nginx configuration?</p>
<p>Obviously you can rename the specifics to your implementation, I would just love to know how you got a working configuration going as I have yet to be able to, however, the only network I have access to might be so complex that it might be impossible to "test" on to begin with <img src='http://michaelshadle.com/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>If you don't want to make it public, feel free to email me - <a href="mailto:mike@mike2k.com">mike@mike2k.com</a></p>
<p>I haven't really had any feedback on the module yet and would really like to try to get it matured more to be usable (especially in my own company's network)</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-41732</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 14 Feb 2012 17:06:37 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-41732</guid>
		<description>I figured this out.  I&#039;m using Passenger so I just set set the cgi parameter as follows in the nginx.conf file:
passenger_set_cgi_param REMOTE_USER $remote_user;

Then I use this in my rails app by looking at request.env[&#039;REMOTE_USER&#039;]</description>
		<content:encoded><![CDATA[<p>I figured this out.  I'm using Passenger so I just set set the cgi parameter as follows in the nginx.conf file:<br />
passenger_set_cgi_param REMOTE_USER $remote_user;</p>
<p>Then I use this in my rails app by looking at request.env['REMOTE_USER']</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-41562</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 10 Feb 2012 22:28:15 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-41562</guid>
		<description>I&#039;m using this module for an intranet and it does enforce Kerberos, and it appears NTLM is not an option, which is fine.  Now I want to retrieve the authenticated user name, but not sure how.  I&#039;ll keep researching, but if anyone has a tip please let me know.</description>
		<content:encoded><![CDATA[<p>I'm using this module for an intranet and it does enforce Kerberos, and it appears NTLM is not an option, which is fine.  Now I want to retrieve the authenticated user name, but not sure how.  I'll keep researching, but if anyone has a tip please let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Barry Allard</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-36492</link>
		<dc:creator>Barry Allard</dc:creator>
		<pubDate>Mon, 24 Oct 2011 11:07:21 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-36492</guid>
		<description>I highly recommend posting a bounty on gun.io if any further bugs need addressing.</description>
		<content:encoded><![CDATA[<p>I highly recommend posting a bounty on gun.io if any further bugs need addressing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-26032</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Thu, 28 Apr 2011 02:18:51 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-26032</guid>
		<description>&lt;a href=&quot;#comment-25921&quot; rel=&quot;nofollow&quot;&gt;@Matteo&lt;/a&gt;
Odd, I&#039;m not sure why I didn&#039;t see the email notification for this reply. As far as I know, no, nobody is. I tried to get some exposure for it (and hopefully someone to validate it works properly, contribute anything to it, etc.) - but even though I had two or three emails offline from the nginx list saying they were interested, I never got a single line of feedback about it.

I&#039;m more than happy to work with someone if someone wants to help maintain, extend, etc.</description>
		<content:encoded><![CDATA[<p><a href="#comment-25921" rel="nofollow">@Matteo</a><br />
Odd, I'm not sure why I didn't see the email notification for this reply. As far as I know, no, nobody is. I tried to get some exposure for it (and hopefully someone to validate it works properly, contribute anything to it, etc.) - but even though I had two or three emails offline from the nginx list saying they were interested, I never got a single line of feedback about it.</p>
<p>I'm more than happy to work with someone if someone wants to help maintain, extend, etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matteo</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-25921</link>
		<dc:creator>Matteo</dc:creator>
		<pubDate>Mon, 25 Apr 2011 11:10:58 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-25921</guid>
		<description>&lt;a href=&quot;#comment-24046&quot; rel=&quot;nofollow&quot;&gt;@mike &lt;/a&gt; 

Nice the github repository...

Has someone already been using this module in production?</description>
		<content:encoded><![CDATA[<p><a href="#comment-24046" rel="nofollow">@mike </a> </p>
<p>Nice the github repository...</p>
<p>Has someone already been using this module in production?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-24046</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Sat, 19 Mar 2011 13:35:05 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-24046</guid>
		<description>&lt;a href=&quot;#comment-23778&quot; rel=&quot;nofollow&quot;&gt;@Polo&lt;/a&gt;
There&#039;s a lot of things that are not fully working with it. That&#039;s why I put it up on github. I am hoping some people might be able to help improve it. I believe that it is supposed to fall back to digest, not basic auth (which would still present the same HTTP auth prompt box either way) if Kerberos negotiation fails.

I could not figure out how to get the realm stuff working at my work (only place with a proper Windows domain setup that I know of) - I tried my hardest but I don&#039;t know enough about how to set it up.

I am all for someone helping extend this and fix bugs. I just wanted to get the project started and sponsored the initial development.

Here&#039;s the project on github -
https://github.com/mike503/spnego-http-auth-nginx-module

I am more than happy to adjust settings as needed for people to be able to do development.</description>
		<content:encoded><![CDATA[<p><a href="#comment-23778" rel="nofollow">@Polo</a><br />
There's a lot of things that are not fully working with it. That's why I put it up on github. I am hoping some people might be able to help improve it. I believe that it is supposed to fall back to digest, not basic auth (which would still present the same HTTP auth prompt box either way) if Kerberos negotiation fails.</p>
<p>I could not figure out how to get the realm stuff working at my work (only place with a proper Windows domain setup that I know of) - I tried my hardest but I don't know enough about how to set it up.</p>
<p>I am all for someone helping extend this and fix bugs. I just wanted to get the project started and sponsored the initial development.</p>
<p>Here's the project on github -<br />
<a href="https://github.com/mike503/spnego-http-auth-nginx-module" rel="nofollow">https://github.com/mike503/spnego-http-auth-nginx-module</a></p>
<p>I am more than happy to adjust settings as needed for people to be able to do development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Polo</title>
		<link>http://michaelshadle.com/2010/01/17/spnego-for-nginx-a-start-at-least/comment-page-1#comment-23778</link>
		<dc:creator>Polo</dc:creator>
		<pubDate>Mon, 14 Mar 2011 15:05:39 +0000</pubDate>
		<guid isPermaLink="false">http://michaelshadle.com/?p=254#comment-23778</guid>
		<description>It works nice, but I don&#039;t get basic headers when my browser not support gssapi (like opera), and It will be very nice if it can be configure that my auth login will not  &quot;login@REALM&quot;  but simple &quot;login&quot;</description>
		<content:encoded><![CDATA[<p>It works nice, but I don't get basic headers when my browser not support gssapi (like opera), and It will be very nice if it can be configure that my auth login will not  "login@REALM"  but simple "login"</p>
]]></content:encoded>
	</item>
</channel>
</rss>

