Skip to content

Commit

Permalink
Fix config file typo
Browse files Browse the repository at this point in the history
  • Loading branch information
LeoColomb committed Oct 30, 2021
1 parent 92d2836 commit 4fe274d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ if [[ "$1" == apache2* ]] || [ "$1" = 'php-fpm' ]; then
fi

if [ "$uid" = '0' ]; then
# attempt to ensure that wp-config.php is owned by the run user
# attempt to ensure that user/config.php is owned by the run user
# could be on a filesystem that doesn't allow chown (like some NFS setups)
chown "$user:$group" wp-config.php || true
chown "$user:$group" user/config.php || true
fi
fi
fi
Expand Down

0 comments on commit 4fe274d

Please sign in to comment.