forked from playsms/playsms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.conf.dist
48 lines (31 loc) · 932 Bytes
/
install.conf.dist
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# INSTALL DATA
# ============
# Please change INSTALL DATA below to suit your system configurations
# Please do not change variable name, you may change only the value
# Web UI admin's password
ADMINPASSWORD="changemeplease"
# MySQL database username
DBUSER="playsms"
# MySQL database password
DBPASS="playsmspwdfordb"
# MySQL database name
DBNAME="playsms"
# MySQL database host
DBHOST="localhost"
# MySQL database port
DBPORT="3306"
# playSMS web URL
URLWEB="https://localhost/playsms"
# Path to playSMS web files
# note: please make sure your web root path, in this example its /var/www/html
PATHWEB="/home/example/web"
# Path to playSMS daemon and other binary files
PATHBIN="/home/example/bin"
# Path to playSMS log files
PATHLOG="/home/example/log"
# Path to playSMS storage
PATHSTR="/home/example/storage"
# Path to playSMS extracted source files
PATHSRC="$(pwd)"
# END OF INSTALL DATA
# ===================