- Fix RedisCache driver to handle MGET failures gracefully with fallback - Add comprehensive discovery context comparison debug tools - Identify root cause: WEB context discovery missing 166 items vs CLI - WEB context missing RequestFactory class entirely (52 vs 69 commands) - Improved exception handling with detailed binding diagnostics
14 lines
275 B
YAML
14 lines
275 B
YAML
---
|
|
# Monitoring Configuration for Nginx
|
|
|
|
- name: Configure Nginx status endpoint
|
|
template:
|
|
src: status.conf.j2
|
|
dest: "{{ nginx_conf_d_path }}/status.conf"
|
|
owner: root
|
|
group: root
|
|
mode: '0644'
|
|
notify: restart nginx
|
|
tags:
|
|
- nginx
|
|
- monitoring |