10 lines
250 B
Bash
Raw Normal View History

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