Update mote role, removing memcached dependency in favor of JSON store
This commit is contained in:
parent
6642890bc4
commit
59924d35a4
2 changed files with 7 additions and 2 deletions
|
@ -21,7 +21,6 @@
|
||||||
- config
|
- config
|
||||||
notify:
|
notify:
|
||||||
- restart apache
|
- restart apache
|
||||||
- restart memcached
|
|
||||||
|
|
||||||
- name: apply selinux type to static files
|
- name: apply selinux type to static files
|
||||||
file: >
|
file: >
|
||||||
|
|
|
@ -29,11 +29,17 @@ Development Configuration
|
||||||
|
|
||||||
enable_debug = True
|
enable_debug = True
|
||||||
app_port = 5000
|
app_port = 5000
|
||||||
|
app_host = "127.0.0.1"
|
||||||
|
|
||||||
'''
|
'''
|
||||||
General Configuration
|
General Configuration
|
||||||
'''
|
'''
|
||||||
|
|
||||||
app_host = "127.0.0.1"
|
|
||||||
admin_groups = ["sysadmin-mote"]
|
admin_groups = ["sysadmin-mote"]
|
||||||
memcached_ip = "127.0.0.1:11211"
|
memcached_ip = "127.0.0.1:11211"
|
||||||
|
# memcached must be installed for this feature
|
||||||
|
use_memcached = False # Use a memcached store for greater performance
|
||||||
|
|
||||||
|
# JSON cache store location
|
||||||
|
json_cache_location = "/tmp/mote/cache.json"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue