Skip to content

Commit f7f8418

Browse files
committed
Release 7.0.2 - See CHANGELOG.md
1 parent 66d7c75 commit f7f8418

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 7.0.2 2022-07-04 <dave at tiredofit dot ca>
2+
3+
### Changed
4+
- Bugfix when there is no default.conf file available
5+
6+
17
## 7.0.1 2022-07-03 <dave at tiredofit dot ca>
28

39
### Added

install/assets/functions/20-php-fpm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ EOF
249249
}
250250

251251
phpfpm_configure_site_default() {
252-
if [ -z "${NGINX_SITE_ENABLED}" ] && [ ! -f "/etc/nginx/sites.available/default.conf" ] && [ ! -f "/etc/cont-init.d/20-php-fpm" ]; then
252+
if [ -z "${NGINX_SITE_ENABLED}" ] && [ ! -f "/etc/nginx/sites.available/default.conf" ] && [ -f "/etc/cont-init.d/20-php-fpm" ]; then
253253
cat <<EOF > /etc/nginx/sites.available/default.conf
254254
server {
255255
### Don't Touch This

0 commit comments

Comments
 (0)