Skip to content

Commit d04f6e3

Browse files
committed
Release 6.2.5 - See CHANGELOG.md
1 parent d705d65 commit d04f6e3

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 6.2.5 2022-10-05 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Fix path for update_template
5+
6+
17
## 6.2.4 2022-10-05 <dave at tiredofit dot ca>
28

39
### Changed

install/etc/cont-init.d/10-nginx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ if [ ! -f "/tmp/.container/container-restart" ] ; then
2828
if var_true "${NGINX_ENABLE_APPLICATION_CONFIGURATION}"; then
2929
nginx_configure_site_default
3030
if var_true "${NGINX_ENABLE_CREATE_SAMPLE_HTML}" ; then nginx_create_sample_html ; fi
31-
update_template "/etc/nginx.sites.available/*.conf" \
31+
update_template "/etc/nginx/sites.available/*.conf" \
3232
NGINX_LISTEN_PORT \
3333
NGINX_WEBROOT
3434
if silent grep -q '<WEBROOT>' /etc/nginx/sites.available/*.conf ; then
35-
print_notice "Detected Legacy templates in /etc/nginx/sites.avaialble. Please change '<WEBROOT>' to {{NGINX_WEBROOT}}"
35+
print_notice "Detected Legacy templates in /etc/nginx/sites.avaialable. Please change '<WEBROOT>' to {{NGINX_WEBROOT}}"
3636
silent sed -i "s|<WEBROOT>|${NGINX_WEBROOT}|g" /etc/nginx/sites.available/*.conf
3737
fi
3838
if silent grep -q '<LISTEN_PORT>' /etc/nginx/sites.available/*.conf 2>&1 ; then
39-
print_notice "Detected Legacy templates in /etc/nginx/sites.avaialble. Please change '<LISTEN_PORT>' to {{NGINX_LISTEN_PORT}}"
39+
print_notice "Detected Legacy templates in /etc/nginx/sites.avaialable. Please change '<LISTEN_PORT>' to {{NGINX_LISTEN_PORT}}"
4040
silent sed -i "s|<LISTEN_PORT>|${NGINX_LISTEN_PORT}|g" /etc/nginx/sites.available/*.conf
4141
fi
4242

0 commit comments

Comments
 (0)