This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
ka
/
ansible-role-nextcloud
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Releases
0
Wiki
Activity
Browse Source
enable caching
master
Markus Katharina Brechtel
7 years ago
parent
86e4736497
commit
12b9f26b64
2 changed files
with
13 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-0
tasks/setup_Debian.yml
+10
-0
templates/config.php.j2
+ 3
- 0
tasks/setup_Debian.yml
View File
@@ -20,6 +20,9 @@
- ca-certificates
- sudo
- php-apcu
- memcached
- php-memcached
notify: restart apache2
- name: remove default page
file:
+ 10
- 0
templates/config.php.j2
View File
@@ -314,4 +314,14 @@ $CONFIG = array(
'upgrade.disable-web' => true,
/**
* Enable memcache
*/
'memcache.local' => '\OC\Memcache\APCu',
'memcache.distributed' => '\OC\Memcache\Memcached',
'memcached_servers' => array(
array('localhost', 11211),
),
);
Write
Preview
Loading…
Cancel
Save