-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCache.php
38 lines (30 loc) · 876 Bytes
/
Cache.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
# WARNING: This file is publically viewable on the web. Do not put private data here.
#
# This file contains cache related includes and settings.
#
# It is included by LocalSettings.php.
#
## Shared memory settings
$wgMainCacheType = CACHE_MEMCACHED;
$wgObjectCacheSessionExpiry = 100000;
$wgSessionsInObjectCache = true;
$wgCacheEpoch = 20230716102721;
if ($sfwikiIsDev)
{
$wgCacheDirectory = "/home/sfwiki/cache/dev";
$wgMemCachedServers = array($UESP_SERVER_BACKUP1 . ":11000");
$wgCookiePrefix = "sfwiki_dev";
}
else
{
$wgCacheDirectory = "/home/sfwiki/cache$sfwikiLanguageSuffix/";
$wgMemCachedServers = [ $SFWIKI_SERVER_MEMCACHED . ':11000' ];
$wgSquidMaxage = 86400;
$wgSquidServers = array($UESP_SERVER_SQUID1);
$wgUseSquid = true;
$wgUseCdn = true;
$wgCdnServers = array();
$wgCdnServers[] = $UESP_SERVER_SQUID1;
}
$wgUsePrivateIPs = true;