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

10 lines
250 B
Bash

#!/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