Skip to content

Commit f269cb8

Browse files
committed
Release 6.2.11 - See CHANGELOG.md
1 parent a45ea77 commit f269cb8

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
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.11 2022-11-29 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Bugfix
5+
6+
17
## 6.2.10 2022-11-29 <dave at tiredofit dot ca>
28

39
### Changed

install/assets/functions/10-nginx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -420,11 +420,11 @@ nginx_configure_server() {
420420
### FastCGI reverse proxy
421421
if var_true "${NGINX_ENABLE_FASTCGI_HTTPS}"; then
422422
print_notice "Enable Nginx FastCGI HTTPS Termination Support"
423-
sed -i "s|fastcgi_param HTTPS '.*';|fastcgi_param HTTPS 'on';|g" >> /etc/nginx/fastcgi_params
423+
sed -i "s|fastcgi_param HTTPS '.*';|fastcgi_param HTTPS 'on';|g" /etc/nginx/fastcgi_params
424424
PROTOCOL="https://"
425425
else
426426
print_debug "Disable Nginx FastCGI HTTPS Termination Support"
427-
sed -i "s|fastcgi_param HTTPS '.*';|fastcgi_param HTTPS 'off';|g" >> /etc/nginx/fastcgi_params
427+
sed -i "s|fastcgi_param HTTPS '.*';|fastcgi_param HTTPS 'off';|g" /etc/nginx/fastcgi_params
428428
PROTOCOL="http://"
429429
fi
430430

0 commit comments

Comments
 (0)