Skip to content

Commit

Permalink
Release 6.4.13 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed May 24, 2024
1 parent 93df252 commit 26460a0
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 6.4.13 2024-05-23 <dave at tiredofit dot ca>

### Changed
- Force Nginx version to be output when monitoring active to solve Zabbix version issues


## 6.4.12 2024-04-24 <dave at tiredofit dot ca>

### Added
Expand Down
1 change: 1 addition & 0 deletions install/assets/functions/10-nginx
Original file line number Diff line number Diff line change
Expand Up @@ -500,6 +500,7 @@ nginx_configure_server() {

if var_false "${ENABLE_ZABBIX}" || var_false "${CONTAINER_ENABLE_MONITORING}" ; then
sed -i "\|include /etc/nginx/snippets/monitoring.conf;|d" /etc/nginx/nginx.conf
update_template /etc/nginx/snippets/monitoring.conf NGINX_VERSION
fi

case "${STAGE,,}" in
Expand Down
1 change: 1 addition & 0 deletions install/etc/nginx/snippets/monitoring.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
location /stub_status {
stub_status on;
access_log off;
more_set_headers "Server: nginx/{{NGINX_VERSION}}";
allow 127.0.0.1;
deny all;
}
Expand Down

0 comments on commit 26460a0

Please sign in to comment.