mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-07 18:57:12 +02:00
refactor(web-app-mediawiki): unify debug & oidc handling via _ensure_require, introduce host-side prep, switch to bind mounts
- Removed obsolete Installation.md, TODO.md, 02_debug.yml, 05_oidc.yml and legacy debug enable/disable tasks - Added 01_prep.yml to render debug.php/oidc.php on host side before container start - Introduced _ensure_require.yml for generic require_once management in LocalSettings.php - Renamed 01_install.yml -> 02_install.yml to align with new numbering - Updated docker-compose.yml.j2 to bind-mount mw-local into /opt/mw-local - Adjusted vars/main.yml to define MEDIAWIKI_LOCAL_MOUNT_DIR and MEDIAWIKI_LOCAL_PATH - Templates debug.php.j2 and oidc.php.j2 now gated by MODE_DEBUG and MEDIAWIKI_OIDC_ENABLED - main.yml now orchestrates prep, install, debug, extensions, oidc require, admin consistently Ref: https://chatgpt.com/share/68b57db2-efcc-800f-a733-aca952298437
This commit is contained in:
@@ -1,145 +0,0 @@
|
||||
# Installation
|
||||
|
||||
## Generate LocalSettings.php
|
||||
Login to the container:
|
||||
|
||||
```bash
|
||||
docker-compose exec -it application /bin/sh
|
||||
```
|
||||
|
||||
Seed the LocalSettings.php:
|
||||
|
||||
```bash
|
||||
cat > LocalSettings.php << EOF
|
||||
<?php
|
||||
# This file was automatically generated by the MediaWiki 1.35.0
|
||||
# installer. If you make manual changes, please keep track in case you
|
||||
# need to recreate them later.
|
||||
#
|
||||
# See includes/DefaultSettings.php for all configurable settings
|
||||
# and their default values, but don't forget to make changes in _this_
|
||||
# file, not there.
|
||||
#
|
||||
# Further documentation for configuration settings may be found at:
|
||||
# https://www.mediawiki.org/wiki/Manual:Configuration_settings
|
||||
|
||||
# Protect against web entry
|
||||
if ( !defined( 'MEDIAWIKI' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
|
||||
## Uncomment this to disable output compression
|
||||
# \$wgDisableOutputCompression = true;
|
||||
|
||||
\$wgSitename = "test";
|
||||
\$wgMetaNamespace = "Test";
|
||||
|
||||
## The URL base path to the directory containing the wiki;
|
||||
## defaults for all runtime URL paths are based off of this.
|
||||
## For more information on customizing the URLs
|
||||
## (like /w/index.php/Page_title to /wiki/Page_title) please see:
|
||||
## https://www.mediawiki.org/wiki/Manual:Short_URL
|
||||
\$wgScriptPath = "";
|
||||
|
||||
## The protocol and server name to use in fully-qualified URLs
|
||||
\$wgServer = "http://wiki.veen.world";
|
||||
|
||||
## The URL path to static resources (images, scripts, etc.)
|
||||
\$wgResourceBasePath = \$wgScriptPath;
|
||||
|
||||
## The URL paths to the logo. Make sure you change this from the default,
|
||||
## or else you'll overwrite your logo when you upgrade!
|
||||
\$wgLogos = [ '1x' => "\$wgResourceBasePath/resources/assets/wiki.png" ];
|
||||
|
||||
## UPO means: this is also a user preference option
|
||||
|
||||
\$wgEnableEmail = true;
|
||||
\$wgEnableUserEmail = true; # UPO
|
||||
|
||||
\$wgEmergencyContact = "apache@🌻.invalid";
|
||||
\$wgPasswordSender = "apache@🌻.invalid";
|
||||
|
||||
\$wgEnotifUserTalk = false; # UPO
|
||||
\$wgEnotifWatchlist = false; # UPO
|
||||
\$wgEmailAuthentication = true;
|
||||
|
||||
## Database settings
|
||||
\$wgDBtype = "mysql";
|
||||
\$wgDBserver = "database:3306";
|
||||
\$wgDBname = "mediawiki";
|
||||
\$wgDBuser = "mediawiki";
|
||||
\$wgDBpassword = "test";
|
||||
|
||||
# MySQL specific settings
|
||||
\$wgDBprefix = "";
|
||||
|
||||
# MySQL table options to use during installation or update
|
||||
\$wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
|
||||
|
||||
## Shared memory settings
|
||||
\$wgMainCacheType = CACHE_NONE;
|
||||
\$wgMemCachedServers = [];
|
||||
|
||||
## To enable image uploads, make sure the 'images' directory
|
||||
## is writable, then set this to true:
|
||||
\$wgEnableUploads = false;
|
||||
\$wgUseImageMagick = true;
|
||||
\$wgImageMagickConvertCommand = "/usr/bin/convert";
|
||||
|
||||
# InstantCommons allows wiki to use images from https://commons.wikimedia.org
|
||||
\$wgUseInstantCommons = false;
|
||||
|
||||
# Periodically send a pingback to https://www.mediawiki.org/ with basic data
|
||||
# about this MediaWiki instance. The Wikimedia Foundation shares this data
|
||||
# with MediaWiki developers to help guide future development efforts.
|
||||
\$wgPingback = true;
|
||||
|
||||
## If you use ImageMagick (or any other shell command) on a
|
||||
## Linux server, this will need to be set to the name of an
|
||||
## available UTF-8 locale
|
||||
\$wgShellLocale = "C.UTF-8";
|
||||
|
||||
## Set \$wgCacheDirectory to a writable directory on the web server
|
||||
## to make your wiki go slightly faster. The directory should not
|
||||
## be publicly accessible from the web.
|
||||
#\$wgCacheDirectory = "\$IP/cache";
|
||||
|
||||
# Site language code, should be one of the list in ./languages/data/Names.php
|
||||
\$wgLanguageCode = "en";
|
||||
|
||||
\$wgSecretKey = "603fe88c985b05706f19aaf77d2a61459555ff21a4a4d4ef0aa15c8f8ec50f00";
|
||||
|
||||
# Changing this will log out all existing sessions.
|
||||
\$wgAuthenticationTokenVersion = "1";
|
||||
|
||||
# Site upgrade key. Must be set to a string (default provided) to turn on the
|
||||
# web installer while LocalSettings.php is in place
|
||||
\$wgUpgradeKey = "f99263b0f3a7c59a";
|
||||
|
||||
## For attaching licensing metadata to pages, and displaying an
|
||||
## appropriate copyright notice / icon. GNU Free Documentation
|
||||
## License and Creative Commons licenses are supported so far.
|
||||
\$wgRightsPage = ""; # Set to the title of a wiki page that describes your license/copyright
|
||||
\$wgRightsUrl = "";
|
||||
\$wgRightsText = "";
|
||||
\$wgRightsIcon = "";
|
||||
|
||||
# Path to the GNU diff3 utility. Used for conflict resolution.
|
||||
\$wgDiff3 = "/usr/bin/diff3";
|
||||
|
||||
## Default skin: you can change the default skin. Use the internal symbolic
|
||||
## names, ie 'vector', 'monobook':
|
||||
\$wgDefaultSkin = "vector";
|
||||
|
||||
# Enabled skins.
|
||||
# The following skins were automatically enabled:
|
||||
wfLoadSkin( 'MonoBook' );
|
||||
wfLoadSkin( 'Timeless' );
|
||||
wfLoadSkin( 'Vector' );
|
||||
|
||||
|
||||
# End of automatically generated settings.
|
||||
# Add more configuration options below.
|
||||
EOF
|
||||
```
|
@@ -1,3 +0,0 @@
|
||||
# Todo
|
||||
- This role needs to be updated to the new role structure
|
||||
- It needs to be tested - Really antique role which wasn't used since ages, because I used discourse in production instead and just updated the refactored and restructure stuff here.
|
20
roles/web-app-mediawiki/tasks/01_prep.yml
Normal file
20
roles/web-app-mediawiki/tasks/01_prep.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
---
|
||||
- name: "PREP | Ensure mw-local mount directory exists on host"
|
||||
file:
|
||||
path: "{{ MEDIAWIKI_LOCAL_MOUNT_DIR }}"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
|
||||
- name: "PREP | Render oidc.php (host side)"
|
||||
when: MEDIAWIKI_OIDC_ENABLED | bool
|
||||
template:
|
||||
src: "oidc.php.j2"
|
||||
dest: "{{ MEDIAWIKI_LOCAL_MOUNT_DIR }}/oidc.php"
|
||||
mode: "0644"
|
||||
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
|
||||
|
||||
- name: "PREP | Render debug.php (host side, always; content gated by MODE_DEBUG)"
|
||||
template:
|
||||
src: "debug.php.j2"
|
||||
dest: "{{ MEDIAWIKI_LOCAL_MOUNT_DIR }}/debug.php"
|
||||
mode: "0644"
|
@@ -1,11 +0,0 @@
|
||||
---
|
||||
# Aktiviert Debug, wenn MODE_DEBUG=true; entfernt es sauber, wenn false.
|
||||
|
||||
- name: "DEBUG | Enable block when MODE_DEBUG=true"
|
||||
when: MODE_DEBUG | bool
|
||||
include_tasks: _debug_enable.yml
|
||||
|
||||
- name: "DEBUG | Disable block when MODE_DEBUG=false"
|
||||
when: not (MODE_DEBUG | bool)
|
||||
include_tasks: _debug_disable.yml
|
||||
|
@@ -1,61 +0,0 @@
|
||||
---
|
||||
# All operations remain INSIDE the running container.
|
||||
# Template is rendered into docker_compose.directories.config on the host.
|
||||
# Change detection is based on checksum comparison vs. container file.
|
||||
|
||||
- name: "OIDC | Ensure local config directory exists"
|
||||
file:
|
||||
path: "{{ MEDIAWIKI_CONFIG_DIR }}"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
|
||||
- name: "OIDC | Render oidc.php locally (template into config dir)"
|
||||
template:
|
||||
src: "oidc.php.j2"
|
||||
dest: "{{ MEDIAWIKI_OIDC_FILE }}"
|
||||
mode: "0644"
|
||||
no_log: "{{ MASK_CREDENTIALS_IN_LOGS | bool }}"
|
||||
|
||||
- name: "OIDC | Compute local checksum"
|
||||
stat:
|
||||
path: "{{ MEDIAWIKI_OIDC_FILE }}"
|
||||
checksum_algorithm: sha256
|
||||
register: _local_oidc
|
||||
|
||||
- name: "OIDC | Compute container checksum (if exists)"
|
||||
shell: >
|
||||
docker exec {{ MEDIAWIKI_CONTAINER }} bash -lc
|
||||
"test -f {{ MEDIAWIKI_HTML_DIR }}/oidc.php &&
|
||||
sha256sum {{ MEDIAWIKI_HTML_DIR }}/oidc.php | awk '{print $1}' || echo MISSING"
|
||||
args:
|
||||
executable: /bin/bash
|
||||
register: _remote_oidc
|
||||
changed_when: false
|
||||
|
||||
- name: "OIDC | Copy oidc.php into container docroot only if different"
|
||||
shell: >
|
||||
if [ "{{ (_remote_oidc.stdout | default('') | trim) }}" != "{{ _local_oidc.stat.checksum }}" ]; then
|
||||
docker cp "{{ MEDIAWIKI_OIDC_FILE }}" "{{ MEDIAWIKI_CONTAINER }}:{{ MEDIAWIKI_HTML_DIR }}/oidc.php" &&
|
||||
docker exec {{ MEDIAWIKI_CONTAINER }} bash -lc "chown {{ MEDIAWIKI_USER }}:{{ MEDIAWIKI_USER }} {{ MEDIAWIKI_HTML_DIR }}/oidc.php && chmod 0644 {{ MEDIAWIKI_HTML_DIR }}/oidc.php" &&
|
||||
echo COPIED;
|
||||
fi
|
||||
args:
|
||||
executable: /bin/bash
|
||||
register: _cp_oidc
|
||||
changed_when: "'COPIED' in (_cp_oidc.stdout | default(''))"
|
||||
|
||||
- name: "OIDC | Require oidc.php once inside LocalSettings.php"
|
||||
shell: |
|
||||
docker exec -u {{ MEDIAWIKI_USER }} {{ MEDIAWIKI_CONTAINER }} bash -lc '
|
||||
LSP={{ MEDIAWIKI_HTML_DIR }}/LocalSettings.php
|
||||
LINE="require_once __DIR__ . '\''/oidc.php'\'';"
|
||||
if ! grep -Fqx -- "$LINE" "$LSP"; then
|
||||
printf "%s\n" "$LINE" >> "$LSP"
|
||||
echo ADDED_REQUIRE
|
||||
fi
|
||||
'
|
||||
args:
|
||||
executable: /bin/bash
|
||||
register: _mw_oidc_req
|
||||
changed_when: "'ADDED_REQUIRE' in (_mw_oidc_req.stdout | default(''))"
|
||||
|
@@ -1,27 +0,0 @@
|
||||
- name: "Remove require_once line from LocalSettings.php (if present)"
|
||||
shell: |
|
||||
docker exec -u {{ MEDIAWIKI_USER }} {{ MEDIAWIKI_CONTAINER }} bash -lc '
|
||||
LSP={{ MEDIAWIKI_HTML_DIR }}/LocalSettings.php
|
||||
if [ -f "$LSP" ]; then
|
||||
if grep -Fqx -- "require_once __DIR__ . '\''/debug.php'\'';" "$LSP"; then
|
||||
sed -i "\#require_once __DIR__ . '/debug.php';#d" "$LSP"
|
||||
echo REMOVED_REQUIRE
|
||||
fi
|
||||
fi
|
||||
'
|
||||
args: { executable: /bin/bash }
|
||||
register: _dbg_rm_req
|
||||
changed_when: "'REMOVED_REQUIRE' in (_dbg_rm_req.stdout | default(''))"
|
||||
|
||||
- name: "Remove debug.php from container (if present)"
|
||||
shell: >
|
||||
docker exec {{ MEDIAWIKI_CONTAINER }} bash -lc
|
||||
"if [ -f {{ MEDIAWIKI_HTML_DIR }}/debug.php ]; then rm -f {{ MEDIAWIKI_HTML_DIR }}/debug.php; echo REMOVED_FILE; fi"
|
||||
args: { executable: /bin/bash }
|
||||
register: _dbg_rm_file
|
||||
changed_when: "'REMOVED_FILE' in (_dbg_rm_file.stdout | default(''))"
|
||||
|
||||
- name: "Remove local debug.php (if present)"
|
||||
file:
|
||||
path: "{{ MEDIAWIKI_CONFIG_DIR }}/debug.php"
|
||||
state: absent
|
@@ -1,45 +0,0 @@
|
||||
- name: "Render debug.php locally"
|
||||
template:
|
||||
src: "debug.php.j2"
|
||||
dest: "{{ MEDIAWIKI_CONFIG_DIR }}/debug.php"
|
||||
mode: "0644"
|
||||
|
||||
- name: "Compute local checksum"
|
||||
stat:
|
||||
path: "{{ MEDIAWIKI_CONFIG_DIR }}/debug.php"
|
||||
checksum_algorithm: sha256
|
||||
register: _dbg_local
|
||||
|
||||
- name: "Compute container checksum (if exists)"
|
||||
shell: >
|
||||
docker exec {{ MEDIAWIKI_CONTAINER }} bash -lc
|
||||
"test -f {{ MEDIAWIKI_HTML_DIR }}/debug.php &&
|
||||
sha256sum {{ MEDIAWIKI_HTML_DIR }}/debug.php | awk '{print $1}' || echo MISSING"
|
||||
args: { executable: /bin/bash }
|
||||
register: _dbg_remote
|
||||
changed_when: false
|
||||
|
||||
- name: "Copy debug.php into container only if different"
|
||||
shell: >
|
||||
if [ "{{ (_dbg_remote.stdout | default('') | trim) }}" != "{{ _dbg_local.stat.checksum }}" ]; then
|
||||
docker cp "{{ MEDIAWIKI_CONFIG_DIR }}/debug.php" "{{ MEDIAWIKI_CONTAINER }}:{{ MEDIAWIKI_HTML_DIR }}/debug.php" &&
|
||||
docker exec {{ MEDIAWIKI_CONTAINER }} bash -lc "chown {{ MEDIAWIKI_USER }}:{{ MEDIAWIKI_USER }} {{ MEDIAWIKI_HTML_DIR }}/debug.php && chmod 0644 {{ MEDIAWIKI_HTML_DIR }}/debug.php" &&
|
||||
echo COPIED;
|
||||
fi
|
||||
args: { executable: /bin/bash }
|
||||
register: _dbg_cp
|
||||
changed_when: "'COPIED' in (_dbg_cp.stdout | default(''))"
|
||||
|
||||
- name: "require_once debug.php in LocalSettings.php"
|
||||
shell: |
|
||||
docker exec -u {{ MEDIAWIKI_USER }} {{ MEDIAWIKI_CONTAINER }} bash -lc '
|
||||
LSP={{ MEDIAWIKI_HTML_DIR }}/LocalSettings.php
|
||||
LINE="require_once __DIR__ . '\''/debug.php'\'';"
|
||||
if ! grep -Fqx -- "$LINE" "$LSP"; then
|
||||
printf "%s\n" "$LINE" >> "$LSP"
|
||||
echo ADDED_DEBUG_REQUIRE
|
||||
fi
|
||||
'
|
||||
args: { executable: /bin/bash }
|
||||
register: _dbg_req
|
||||
changed_when: "'ADDED_DEBUG_REQUIRE' in (_dbg_req.stdout | default(''))"
|
29
roles/web-app-mediawiki/tasks/_ensure_require.yml
Normal file
29
roles/web-app-mediawiki/tasks/_ensure_require.yml
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
# Inputs (per include übergeben):
|
||||
# - ensure_present: bool (true => sicherstellen, dass Zeile existiert; false => entfernen)
|
||||
# - require_path: string (z. B. "{{ MEDIAWIKI_LOCAL_PATH }}/debug.php")
|
||||
|
||||
- name: "Ensure require_once('{{ require_path }}') present/absent in LocalSettings.php"
|
||||
shell: |
|
||||
docker exec -u {{ MEDIAWIKI_USER }} {{ MEDIAWIKI_CONTAINER}} bash -lc '
|
||||
set -e
|
||||
LSP={{ MEDIAWIKI_HTML_DIR }}/LocalSettings.php
|
||||
LINE="require_once '\''{{ require_path }}'\'';"
|
||||
test -f "$LSP" || exit 0
|
||||
if {{ (ensure_present | bool) | ternary("true","false") }}; then
|
||||
if ! grep -Fqx -- "$LINE" "$LSP"; then
|
||||
printf "%s\n" "$LINE" >> "$LSP"
|
||||
echo ADDED_REQUIRE
|
||||
fi
|
||||
else
|
||||
if grep -Fqx -- "$LINE" "$LSP"; then
|
||||
sed -i "\#require_once '{{ require_path }}';#d" "$LSP"
|
||||
echo REMOVED_REQUIRE
|
||||
fi
|
||||
fi
|
||||
'
|
||||
args: { executable: /bin/bash }
|
||||
register: _req_mut
|
||||
changed_when: >
|
||||
'ADDED_REQUIRE' in (_req_mut.stdout | default('')) or
|
||||
'REMOVED_REQUIRE' in (_req_mut.stdout | default(''))
|
@@ -3,20 +3,35 @@
|
||||
include_role:
|
||||
name: sys-stk-full-stateful
|
||||
vars:
|
||||
docker_compose_flush_handlers: true
|
||||
docker_compose_flush_handlers: false
|
||||
|
||||
- name: "Prepare host files for '{{ application_id }}'"
|
||||
include_tasks: 01_prep.yml
|
||||
|
||||
- name: "flush handlers for '{{ application_id }}' after preparation finished"
|
||||
meta: flush_handlers
|
||||
|
||||
- name: "Load install procedures for '{{ application_id }}''"
|
||||
include_tasks: 01_install.yml
|
||||
include_tasks: 02_install.yml
|
||||
|
||||
- name: "Load debug procedures for '{{ application_id }}''"
|
||||
include_tasks: 02_debug.yml
|
||||
|
||||
- name: "DEBUG | Ensure require_once(debug.php) matches MODE_DEBUG"
|
||||
include_tasks: _ensure_require.yml
|
||||
vars:
|
||||
ensure_present: "{{ MODE_DEBUG | bool }}"
|
||||
require_path: "{{ MEDIAWIKI_LOCAL_PATH }}/debug.php"
|
||||
when: MODE_DEBUG | bool
|
||||
|
||||
- name: "Load admin setup procedures for '{{ application_id }}''"
|
||||
include_tasks: 03_admin.yml
|
||||
|
||||
- name: "Load OIDC procedures for '{{ application_id }}''"
|
||||
include_tasks: "{{ item }}"
|
||||
loop:
|
||||
- 04_extensions.yml
|
||||
- 05_oidc.yml
|
||||
when: MEDIAWIKI_OIDC_ENABLED | bool
|
||||
- name: "Load extensions procedures for '{{ application_id }}''"
|
||||
include_tasks: "04_extensions.yml"
|
||||
when: MEDIAWIKI_OIDC_ENABLED | bool
|
||||
|
||||
- name: "OIDC | Ensure require_once(oidc.php) present"
|
||||
include_tasks: _ensure_require.yml
|
||||
vars:
|
||||
ensure_present: true
|
||||
require_path: "{{ MEDIAWIKI_LOCAL_PATH }}/oidc.php"
|
||||
when: MEDIAWIKI_OIDC_ENABLED | bool
|
||||
|
@@ -1,9 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
* File: debug.php
|
||||
* Note: This file is always present via bind mount.
|
||||
* Its effect is controlled by MODE_DEBUG at template-render time.
|
||||
*/
|
||||
if ( !defined( 'MEDIAWIKI' ) ) {
|
||||
exit;
|
||||
}
|
||||
|
||||
$wgShowExceptionDetails = true;
|
||||
$wgShowDBErrorBacktrace = true;
|
||||
$wgShowSQLErrors = true;
|
||||
$wgDevelopmentWarnings = true;
|
||||
{% if MODE_DEBUG | bool %}
|
||||
/**
|
||||
* DEBUG ENABLED (MODE_DEBUG=true)
|
||||
* Verbose error display & debug logs for MediaWiki and OIDC/PluggableAuth.
|
||||
*/
|
||||
$wgShowExceptionDetails = true;
|
||||
$wgShowDBErrorBacktrace = true;
|
||||
$wgShowSQLErrors = true;
|
||||
$wgDevelopmentWarnings = true;
|
||||
|
||||
@ini_set('display_errors', '1');
|
||||
@ini_set('display_startup_errors', '1');
|
||||
@@ -19,3 +32,9 @@ $wgDebugLogGroups = array_merge($wgDebugLogGroups ?? [], [
|
||||
'PluggableAuth' => 'php://stderr',
|
||||
'OpenIDConnect' => 'php://stderr',
|
||||
]);
|
||||
{% else %}
|
||||
/**
|
||||
* DEBUG DISABLED (MODE_DEBUG=false)
|
||||
* Intentionally a no-op. File stays present to keep require_once stable.
|
||||
*/
|
||||
{% endif %}
|
||||
|
@@ -5,6 +5,7 @@
|
||||
image: "{{ MEDIAWIKI_IMAGE }}:{{ MEDIAWIKI_VERSION }}"
|
||||
volumes:
|
||||
- "data:/var/www/html/"
|
||||
- "{{ MEDIAWIKI_LOCAL_MOUNT_DIR }}:{{ MEDIAWIKI_LOCAL_PATH }}:ro"
|
||||
ports:
|
||||
- "127.0.0.1:{{ ports.localhost.http[application_id] }}:{{ container_port }}"
|
||||
{% include 'roles/docker-container/templates/healthcheck/curl.yml.j2' %}
|
||||
|
@@ -1,18 +1,19 @@
|
||||
<?php
|
||||
// ### OIDC (PluggableAuth) – BEGIN (managed by Ansible)
|
||||
|
||||
{% if MEDIAWIKI_OIDC_ENABLED | bool %}
|
||||
|
||||
wfLoadExtension( 'PluggableAuth' );
|
||||
wfLoadExtension( 'OpenIDConnect' );
|
||||
|
||||
$wgPluggableAuth_EnableAutoLogin = true; // don’t auto-redirect to IdP
|
||||
$wgPluggableAuth_EnableLocalLogin = false; // keep local user/pass login
|
||||
$wgPluggableAuth_EnableAutoLogin = true;
|
||||
$wgPluggableAuth_EnableLocalLogin = false;
|
||||
$wgPluggableAuth_ButtonLabel = '{{ MEDIAWIKI_OIDC_BUTTON_TEXT }}';
|
||||
|
||||
// PluggableAuth expects a list of providers (numeric array) on REL1_44
|
||||
$wgPluggableAuth_Config = [
|
||||
[
|
||||
'plugin' => 'OpenIDConnect',
|
||||
'data' => [
|
||||
// For Keycloak, use the REALM URL, e.g. https://auth.example/realms/<realm>
|
||||
'providerURL' => '{{ MEDIAWIKI_OIDC_ISSUER }}',
|
||||
'clientID' => '{{ MEDIAWIKI_OIDC_CLIENT_ID }}',
|
||||
'clientsecret' => '{{ MEDIAWIKI_OIDC_CLIENT_SECRET }}',
|
||||
@@ -21,7 +22,8 @@ $wgPluggableAuth_Config = [
|
||||
],
|
||||
];
|
||||
|
||||
// Helpful defaults
|
||||
$wgOpenIDConnect_UseEmailNameAsUserName = true;
|
||||
$wgOpenIDConnect_MigrateUsers = true;
|
||||
// ### OIDC (PluggableAuth) – END
|
||||
|
||||
{% endif %}
|
@@ -10,7 +10,9 @@ MEDIAWIKI_URL: "{{ domains | get_url(application_id, WEB_PROT
|
||||
## Folders
|
||||
MEDIAWIKI_HTML_DIR: "/var/www/html"
|
||||
MEDIAWIKI_CONFIG_DIR: "{{ docker_compose.directories.config }}"
|
||||
MEDIAWIKI_OIDC_FILE: "{{ docker_compose.directories.config }}/oidc.php"
|
||||
MEDIAWIKI_VOLUMES_DIR: "{{ docker_compose.directories.volumes }}"
|
||||
MEDIAWIKI_LOCAL_MOUNT_DIR: "{{ MEDIAWIKI_VOLUMES_DIR }}/mw-local"
|
||||
MEDIAWIKI_LOCAL_PATH: "/opt/mw-local"
|
||||
|
||||
## Docker
|
||||
MEDIAWIKI_VERSION: "{{ applications | get_app_conf(application_id, 'docker.services.mediawiki.version') }}"
|
||||
@@ -32,10 +34,10 @@ MEDIAWIKI_OIDC_ISSUER: "{{ OIDC.CLIENT.ISSUER_URL }}"
|
||||
MEDIAWIKI_OIDC_BUTTON_TEXT: "{{ OIDC.BUTTON_TEXT }}"
|
||||
|
||||
# Extensions
|
||||
MEDIAWIKI_EXT_BRANCH: "REL1_44" # passend zu MediaWiki 1.44
|
||||
MEDIAWIKI_EXT_BRANCH: "REL1_44"
|
||||
MEDIAWIKI_EXT_CFG_BASE: "{{ MEDIAWIKI_CONFIG_DIR }}/mwext/{{ MEDIAWIKI_EXT_BRANCH }}"
|
||||
MEDIAWIKI_EXT_LIST:
|
||||
- name: "PluggableAuth"
|
||||
url: "https://codeload.github.com/wikimedia/mediawiki-extensions-PluggableAuth/tar.gz/refs/heads/{{ MEDIAWIKI_EXT_BRANCH }}"
|
||||
- name: "OpenIDConnect"
|
||||
url: "https://codeload.github.com/wikimedia/mediawiki-extensions-OpenIDConnect/tar.gz/refs/heads/{{ MEDIAWIKI_EXT_BRANCH }}"
|
||||
url: "https://codeload.github.com/wikimedia/mediawiki-extensions-OpenIDConnect/tar.gz/refs/heads/{{ MEDIAWIKI_EXT_BRANCH }}"
|
||||
|
Reference in New Issue
Block a user