mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-03-20 03:57:02 +08:00
Update mote role, removing memcached dependency in favor of JSON store
This commit is contained in:
@@ -21,7 +21,6 @@
|
||||
- config
|
||||
notify:
|
||||
- restart apache
|
||||
- restart memcached
|
||||
|
||||
- name: apply selinux type to static files
|
||||
file: >
|
||||
|
||||
@@ -29,11 +29,17 @@ Development Configuration
|
||||
|
||||
enable_debug = True
|
||||
app_port = 5000
|
||||
app_host = "127.0.0.1"
|
||||
|
||||
'''
|
||||
General Configuration
|
||||
'''
|
||||
|
||||
app_host = "127.0.0.1"
|
||||
admin_groups = ["sysadmin-mote"]
|
||||
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"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user