10 lines
250 B
Bash
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
|