diff options
author | Jakub Klinkovský <j.l.k@gmx.com> | 2016-07-14 13:11:44 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2016-07-20 09:14:11 +0200 |
commit | d3defaa19b976e7811e95edb5ac5c78f9ef9fa40 (patch) | |
tree | 31a735722ea4ca29718319cf48b7816b7c84928d | |
parent | 862da92c7a3b6479fc4daa4bf3b8944aa6735d8b (diff) |
LocalSettings: move database settings
-rw-r--r-- | LocalSettings.archlinux.org.php | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/LocalSettings.archlinux.org.php b/LocalSettings.archlinux.org.php index 89f8ca92..0129df54 100644 --- a/LocalSettings.archlinux.org.php +++ b/LocalSettings.archlinux.org.php @@ -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(); |