Adding better backups and log rotation, and updating files around it

This commit is contained in:
2024-10-14 19:30:51 -07:00
parent bbd2de6792
commit 527ba5cf58
7 changed files with 64 additions and 15 deletions

View File

@@ -7,26 +7,30 @@ fi
adduser -u $uid $user
mkdir -p /home/$user/public_html
mkdir -p /home/$user/logs
mkdir -p /home/$user/logs/{apache,system}
mkdir -p /home/$user/logs/{apache,php-fpm}
chown -R $user:$user /home/$user
chmod -R 755 /home/$user
mv /var/log/httpd /var/log/httpd.bak
ln -s /home/$user/logs/apache /var/log/httpd
ln -s /home/$user/logs/php-fpm /var/log/php-fpm
/scripts/install-php$PHPVER.sh
/scripts/create-vhost.sh
/scripts/create-php-config.sh
ln -s /etc/httpd/logs /home/$user/logs/apache
ln -s /var/log /home/$user/logs/system
if [ -f /etc/httpd/conf.d/ssl.conf ]; then
mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf.bak
fi
/usr/sbin/httpd -k start
/usr/sbin/php-fpm -y /etc/php-fpm.conf
chown -R $user:$user /home/$user
chmod -R 755 /home/$user
if [[ $environment == 'DEV' ]]; then
echo "Starting Dev Deployment"
mkdir -p /home/$user/public_html/_db_backups
mkdir -p /home/$user/_db_backups
dnf install -y MariaDB-server MariaDB-client memcached
nohup mysqld -umysql &
if [ ! -f /home/$user/mysql_creds ]; then
@@ -39,7 +43,7 @@ if [[ $environment == 'DEV' ]]; then
mysql -e "CREATE USER '"$mysql_user"'@'localhost' IDENTIFIED BY '"$mysql_password"';"
mysql -e "GRANT ALL PRIVILEGES ON *.* TO '"$mysql_user"'@'localhost' WITH GRANT OPTION;"
mysql -e "FLUSH PRIVILEGES;"
echo "*/15 * * * * root /scripts/mysql-backup.sh $user $mysql_db" >> /etc/crontab
echo "*/15 * * * * root /scripts/mysql-backup.sh $user devdb_$mysql_db" >> /etc/crontab
echo "MySQL User: "$mysql_user > /home/$user/mysql_creds
echo "MySQL Password: "$mysql_password >> /home/$user/mysql_creds
echo "MySQL Database: devdb_"$mysql_db >> /home/$user/mysql_creds
@@ -54,7 +58,7 @@ if [[ $environment == 'PROD' ]]; then
sed -r -i 's/;session.save_path="localhost:11211/session.save_path="memcache:11211/' /etc/php.d/50-memcached.ini
fi
/usr/sbin/crond
tail -f /etc/httpd/logs/*
tail -f /var/log/httpd/*
exit 0