Skip to content

Commit 11f91f8

Browse files
authored
v7.2.20 (#218)
Minor updates * Fixing bug in www.conf generator
1 parent 33c2b50 commit 11f91f8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.2.19
1+
7.2.20

overlay/etc/bf/init.d/23-www-conf.nu

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ export def main [] {
77
# set user / group to www
88
let fpm_conf = bf env PHP_FPM_CONF
99
let www = "www"
10-
bf-php ini replace_values_in_file $fpm_conf {user: $www, group: $www}
10+
bf-php ini insert_or_replace_values_in_file $fpm_conf {user: $www, group: $www}
1111

1212
# if there is an override file, use it
1313
let override_file = bf env PHP_FPM_OVERRIDE
1414
let override_values = if ($override_file | path exists) { bf fs read $override_file | from json }
15-
bf-php ini replace_values_in_file $fpm_conf $override_values
15+
bf-php ini insert_or_replace_values_in_file $fpm_conf $override_values
1616
}

0 commit comments

Comments
 (0)