10 lines
250 B
Bash
10 lines
250 B
Bash
#!/bin/sh
|
|
|
|
if [ -f /application/.nginx-site.conf ]; then
|
|
echo " -> Installing custom nginx website config..."
|
|
cp -F /application/.nginx-site.conf /etc/nginx/http.d/default.conf
|
|
fi
|
|
|
|
# scripts at level 00 should not end the framework setup
|
|
exit 1
|