Sign inSign up

bbtsoftwareag/mediawiki-ldap

By bbtsoftwareag

Updated about 6 years ago

Mediawiki with Apache based LDAP authentication and some other extensions

Image
0

2.9K

bbtsoftwareag/mediawiki-ldap repository overview

Mediawiki with Apache based LDAP authentication

Mediawiki with Apache based LDAP authentication and some other extensions.

Based on the official Mediawiki container.

Information

ServiceStats
DockerBuild Pulls Stars Automated
GitHubLast commit Issues PR Size License

General

TopicDescription
ImageSee Docker Hub.
SourceSee GitHub.

Installation

docker pull bbtsoftwareag/docker-mediawiki-ldap
Tags
TagDescriptionSize
latestLatest releaseSize
1.34.2Release matching to mediawiki 1.34.2Size
Volumes

Specific for LDAP authentication:

FileDescription
/var/www/html/LocalSettings.phpAdd wfLoadExtension('Auth_remoteuser'); to LocalSettings.php
/etc/apache2/sites-available/000-default.conf000-default.conf

Samples

000-default.conf
<VirtualHost *:80>
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/html

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

        <Location />
                AuthName "LDAP Authentication"
                AuthType Basic
                AuthBasicProvider ldap
                AuthLDAPGroupAttribute member
                AuthLDAPGroupAttributeIsDN On

                # Example for Microsoft AD. For more details see Apache authnz_ldap documentation.
                AuthLDAPRemoteUserAttribute sAMAccountName
                AuthLDAPURL ldap://LdapServerHost:Port/?sAMAccountName?sub

                AuthLDAPBindDN "LdapUserDn"
                AuthLDAPBindPassword LdapUserPwd
                Require valid-user

        </Location>
</VirtualHost>

Tag summary

Content type

Image

Digest

Size

245.3 MB

Last updated

about 6 years ago

docker pull bbtsoftwareag/mediawiki-ldap