Release 10.5.0 #124

Manually merged
jlecour merged 46 commits from unstable into stable 2021-04-01 15:40:51 +02:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit cff309ff41 - Show all commits

View file

@ -13,6 +13,7 @@ The **patch** part changes incrementally at each release.
### Added
* apache: new variables for logrotate + server-status
* nginx: add access to server status on default VHost
### Changed

View file

@ -50,3 +50,13 @@ server {
access_log off;
}
}
server {
listen 80;
server_name munin;
location /server-status-{{ nginx_serverstatus_suffix | mandatory }} {
stub_status on;
access_log off;
}
}