update fpm config

This commit is contained in:
lubiana 2024-06-23 08:27:17 +02:00
parent 0661f5dd3f
commit 7f2eb7ec65
No known key found for this signature in database
3 changed files with 7 additions and 5 deletions

4
deploy/prepare-deploy.sh Normal file → Executable file
View file

@ -1,6 +1,6 @@
#!/usr/bin/env sh
TARGETDIR='futtern-app'
TARGETDIR='deploy/futtern-app'
if [ -d $TARGETDIR ]; then
rm -rf $TARGETDIR
@ -8,7 +8,7 @@ fi
mkdir $TARGETDIR
cd $TARGETDIR || return
pathsToCopy="public bin config migrations src templates composer.json composer.lock symfony.lock .env etc"
pathsToCopy="public bin config migrations src templates composer.json composer.lock symfony.lock .env"
for path in $pathsToCopy
do