Trying to get REDIS running

This commit is contained in:
2025-08-21 19:24:18 +00:00
parent 57447de760
commit 0867f5f6af

View File

@ -126,8 +126,13 @@ cat >> "$LSETTINGS" <<EOF
\$wgDefaultSkin = "vector";
# Enable Redis caching
\$wgObjectCaches['redis'] = [
\ 'class' => 'RedisBagOStuff',
\ 'servers' => ['127.0.0.1:6379'],
\ 'persistent' => false,
\];
\$wgMainCacheType = 'redis';
\$wgMemCachedServers = ["127.0.0.1:6379"];
\$wgSessionCacheType = 'redis';
EOF