Skip to content
Snippets Groups Projects
Commit 20002125 authored by Jakub Klinkovský's avatar Jakub Klinkovský Committed by Florian Pritz
Browse files

archwiki: LocalSettings: move database settings

parent c6de5e80
No related branches found
No related tags found
No related merge requests found
......@@ -65,6 +65,23 @@ $wgGitRepositoryViewers['.+projects\.archlinux\.org/vhosts/wiki\.archlinux\.org\
$wgJobRunRate = 0;
##
## Database settings
##
$wgDBtype = "mysql";
$wgDBserver = "localhost";
# MySQL specific settings
$wgDBprefix = "";
# MySQL table options to use during installation or update
$wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
# Experimental charset support for MySQL 5.0.
$wgDBmysql5 = false;
## Uncomment this to disable output compression
# $wgDisableOutputCompression = true;
......@@ -80,19 +97,6 @@ $wgEnotifUserTalk = true; # UPO
$wgEnotifWatchlist = true; # UPO
$wgEmailAuthentication = true;
## Database settings
$wgDBtype = "mysql";
$wgDBserver = "localhost";
# MySQL specific settings
$wgDBprefix = "";
# MySQL table options to use during installation or update
$wgDBTableOptions = "ENGINE=InnoDB, DEFAULT CHARSET=binary";
# Experimental charset support for MySQL 5.0.
$wgDBmysql5 = false;
## Shared memory settings
$wgMainCacheType = CACHE_ACCEL;
$wgMemCachedServers = array();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment