docker-alpine-php83-aio/config/frameworks/00-nginx-site.sh

10 lines
250 B
Bash
Raw Normal View History

2024-02-05 23:20:42 +00:00
#!/bin/sh
if [ -f /application/.nginx-site.conf ]; then
echo " -- Installing nginx website config..."
cp -F /application/.nginx-site.conf /etc/nginx/sites-enabled/default.conf
fi
# scripts at level 00 should not end the framework setup
exit 1