87 lines
2.5 KiB
Bash
87 lines
2.5 KiB
Bash
#!/bin/bash
|
|
|
|
# Disable Strict Host checking for non interactive git clones
|
|
|
|
mkdir -p -m 0700 /root/.ssh
|
|
echo -e "Host *\n\tStrictHostKeyChecking no\n" >> /root/.ssh/config
|
|
|
|
if [ ! -z "$SSH_KEY" ]; then
|
|
echo $SSH_KEY > /root/.ssh/id_rsa.base64
|
|
base64 -d /root/.ssh/id_rsa.base64 > /root/.ssh/id_rsa
|
|
chmod 600 /root/.ssh/id_rsa
|
|
fi
|
|
|
|
# Set custom webroot
|
|
if [ ! -z "$WEBROOT" ]; then
|
|
sed -i "s#root /var/www/html;#root ${WEBROOT};#g" /etc/nginx/sites-available/default.conf
|
|
fi
|
|
|
|
# Setup git variables
|
|
if [ ! -z "$GIT_EMAIL" ]; then
|
|
git config --global user.email "$GIT_EMAIL"
|
|
fi
|
|
if [ ! -z "$GIT_NAME" ]; then
|
|
git config --global user.name "$GIT_NAME"
|
|
git config --global push.default simple
|
|
fi
|
|
|
|
# Dont pull code down if the .git folder exists
|
|
if [ ! -d "/var/www/html/.git" ]; then
|
|
# Pull down code from git for our site!
|
|
if [ ! -z "$GIT_REPO" ]; then
|
|
# Remove the test index file
|
|
rm -Rf /var/www/html/index.php
|
|
if [ ! -z "$GIT_BRANCH" ]; then
|
|
git clone -b $GIT_BRANCH $GIT_REPO /var/www/html/
|
|
else
|
|
git clone $GIT_REPO /var/www/html/
|
|
fi
|
|
chown -Rf nginx.nginx /var/www/html
|
|
fi
|
|
fi
|
|
|
|
# Display PHP error's or not
|
|
if [[ "$ERRORS" != "1" ]] ; then
|
|
echo php_flag[display_errors] = off >> /etc/php5/php-fpm.conf
|
|
else
|
|
echo php_flag[display_errors] = on >> /etc/php5/php-fpm.conf
|
|
fi
|
|
|
|
# Display Version Details or not
|
|
if [[ "$HIDE_NGINX_HEADERS" == "0" ]] ; then
|
|
sed -i "s/server_tokens off;/server_tokens on;/g" /etc/nginx/nginx.conf
|
|
else
|
|
sed -i "s/expose_php = On/expose_php = Off/g" /etc/php5/conf.d/php.ini
|
|
fi
|
|
|
|
# Increase the memory_limit
|
|
if [ ! -z "$PHP_MEM_LIMIT" ]; then
|
|
sed -i "s/memory_limit = 128M/memory_limit = ${PHP_MEM_LIMIT}M/g" /etc/php5/conf.d/php.ini
|
|
fi
|
|
|
|
# Increase the post_max_size
|
|
if [ ! -z "$PHP_POST_MAX_SIZE" ]; then
|
|
sed -i "s/post_max_size = 100M/post_max_size = ${PHP_POST_MAX_SIZE}M/g" /etc/php5/conf.d/php.ini
|
|
fi
|
|
|
|
# Increase the upload_max_filesize
|
|
if [ ! -z "$PHP_UPLOAD_MAX_FILESIZE" ]; then
|
|
sed -i "s/upload_max_filesize = 100M/upload_max_filesize= ${PHP_UPLOAD_MAX_FILESIZE}M/g" /etc/php5/conf.d/php.ini
|
|
fi
|
|
|
|
# Very dirty hack to replace variables in code with ENVIRONMENT values
|
|
if [[ "$TEMPLATE_NGINX_HTML" == "1" ]] ; then
|
|
for i in $(env)
|
|
do
|
|
variable=$(echo "$i" | cut -d'=' -f1)
|
|
value=$(echo "$i" | cut -d'=' -f2)
|
|
if [[ "$variable" != '%s' ]] ; then
|
|
replace='\$\$_'${variable}'_\$\$'
|
|
find /var/www/html -type f -exec sed -i -e 's/'${replace}'/'${value}'/g' {} \;
|
|
fi
|
|
done
|
|
fi
|
|
|
|
# Start supervisord and services
|
|
/usr/bin/supervisord -n -c /etc/supervisord.conf
|