Release 9.10.0 #58

Merged
jlecour merged 68 commits from unstable into stable 2019-06-21 10:51:04 +02:00
3 changed files with 16 additions and 0 deletions
Showing only changes of commit 8e618ce70a - Show all commits

View file

@ -11,6 +11,8 @@ The **patch** part changes incrementally at each release.
## [Unreleased]
### Added
* apache: add server status suffix in VHost if missing
* nginx: add server status suffix in VHost if missing
### Changed
* evocheck : version 19.04 from upstream

View file

@ -40,6 +40,13 @@
regexp: '__SERVERSTATUS_SUFFIX__'
replace: "{{ apache_serverstatus_suffix }}"
- name: add server-status suffix in default VHost
replace:
dest: /etc/apache2/sites-available/000-evolinux-default.conf
regexp: '<Location /server-status>'
replace: '<Location /server-status-{{ apache_serverstatus_suffix }}>'
notify: reload apache
- name: Munin configuration has a section for apache
lineinfile:
dest: /etc/munin/plugin-conf.d/munin-node

View file

@ -40,3 +40,10 @@
dest: /var/www/index.html
regexp: '__SERVERSTATUS_SUFFIX__'
replace: "{{ nginx_serverstatus_suffix }}"
- name: add server-status suffix in default VHost
replace:
dest: /etc/nginx/sites-available/evolinux-default.conf
regexp: 'location /nginx_status {'
replace: 'location /nginx_status-{{ nginx_serverstatus_suffix }} {'
notify: reload nginx