You are not logged in.
Pages: 1
Hello, iam install glpi on xampp server, and add mod_authnz_sspi.so? then configurated:
Edit the following configuration files:
php/php.ini: Uncomment extension=php_ldap.dll line.
apache/conf/httpd.ini: Add the following to the end of the LoadModules Section:
LoadModule authn_core_module modules/mod_authn_core.so
LoadModule authz_core_module modules/mod_authz_core.so
LoadModule authnz_sspi_module modules/mod_authnz_sspi.so
Find the <Directory tag and delete the opening and closing tag, along with its contents. Then paste in the following:
<Directory />
Options None
AllowOverride All
Order allow,deny
Allow from all
AuthName intranet
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIOfferBasic On
SSPIOmitDomain On
Require valid-user
</Directory>
this is my first experience with apache. I want to set up end-to-end authorization, but so far without success. Does anyone have experience, who was able to set up end-to-end authorization from under windows server?
Offline
Pages: 1