1 defines permission if user has right "key". # # Typical setups are: # # Everything goes (this is the default behaviour): # $wgWhitelistEdit = false; # $wgWhitelistRead = false; # $wgWhitelistAccount = array ( "user" => 1, "sysop" => 1, "developer" => 1 ); # # Invitation-only closed shop type of system # $wgWhitelistEdit = true; # $wgWhitelistRead = true; # $wgWhitelistAccount = array ( "user" => 0, "sysop" => 1, "developer" => 1 ); # # Public website, closed editorial team # $wgWhitelistEdit = true; # $wgWhitelistRead = false; # $wgWhitelistAccount = array ( "user" => 0, "sysop" => 1, "developer" => 1 ); # Squid-related settings # # Enable/disable Squid # $wgUseSquid = true; # If you run Squid3 with ESI support, enable this (default:false): # $wgUseESI = true; # Internal server name as known to Squid, if different # $wgInternalServer = 'http://yourinternal.tld:8000'; # A list of proxy servers (ips if possible) to purge on changes # don't specify ports here (80 is default) # $wgSquidServers = array('127.0.0.1'); ?>