forked from MacareuxDigital/concretecms-backup-shell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
concretecms-backup.conf
28 lines (27 loc) · 915 Bytes
/
concretecms-backup.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#-----------------------------------------------------------
# Parameters for concretecms-backup.sh
#
# subject matter:
#
# Target environment: Development or Production
#
# concretecms-backup.conf should be stored in the same directory as concretecms-backup.sh
#-----------------------------------------------------------
# Server Config
# VARIABLES
# ----------
NOW_TIME=$(date "+%Y%m%d%H%M%S")
WHERE_TO_SAVE="/var/www/html/backup"
WHERE_IS_CONCRETE5="/var/www/html/www"
FILE_NAME="katzueno"
MYSQL_SERVER="localhost"
MYSQL_NAME="database"
MYSQL_USER="root"
# Remove comment out & enter password if you want to avoid entering mysql password
# MYSQL_PASSWORD="pass"
# Make sure to set the proper MySQL character encoding to avoid character corruption
MYSQL_CHARASET="utf8mb4"
# Set "true" if you're using MySQL 5.7.31 or later. (true or false)
MYSQL_IF_NO_TABLESPACE="false"
# MySQL Port Number
MYSQL_PORT="3306"