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