You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by robert rottermann <ro...@redcor.ch> on 2007/12/17 16:29:08 UTC

[users@httpd] authorization with more than one method

hi there,
I have a site where I would like to use more than one authentication
method. how can can I do that?
I have how something like:

    <Location />
	AuthType Basic
	AuthName "By Invitation Only"
	AuthUserFile /srv/www/htdocs/passwd/passwords
	AuthGroupFile /srv/www/htdocs/passwd/groups
	require group DieGruppe
    </Location>

I would like to add something like

    <Location />
	AuthType NTLM
	AuthName "By Invitation Only"
	xxx
	yyy
	require valid_user
    </Location>

so that a user can login either with basic authentication OR using NTLM

how can I do that.
can somebody point me to an example.

thanks
robert