We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66d7c75 commit f7f8418Copy full SHA for f7f8418
CHANGELOG.md
@@ -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
7
## 7.0.1 2022-07-03 <dave at tiredofit dot ca>
8
9
### Added
install/assets/functions/20-php-fpm
@@ -249,7 +249,7 @@ EOF
249
}
250
251
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
+ if [ -z "${NGINX_SITE_ENABLED}" ] && [ ! -f "/etc/nginx/sites.available/default.conf" ] && [ -f "/etc/cont-init.d/20-php-fpm" ]; then
253
cat <<EOF > /etc/nginx/sites.available/default.conf
254
server {
255
### Don't Touch This
0 commit comments