forked from zhang-jian-jun/app-pkgmanage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.ini
70 lines (41 loc) · 1.14 KB
/
package.ini
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[SYSTEM]
; Configuration file path for data initialization
init_conf_path=/etc/pkgship/conf.yaml
; Whether the system is in debug mode
debug=false
; Where to store data files when using sqlite database
; data_base_path=/var/run/pkgship_dbs
; Port managed by the administrator, with write permission
write_port=8080
; Ordinary user query port, only the right to query data, no permission to write data
query_port=8090
; IP address path with write permission
write_ip_addr=0.0.0.0
; IP address path with permission to query data
query_ip_addr=0.0.0.0
[DATABASE]
; Basic configuration of sqlalchemy to connect to the database
;Username of the database
user_name=
;connection password
password=
;host address
host=
; number for database connection
port=
;Connected data name
database=
; dbtype:The type of database is mainly divided into mysql and sqlite
dbtype=sqlite
[LOG]
; Custom log storage path
; log_path=/var/run/pkgship
; Logging level
; The log level option value can only be as follows
; INFO DEBUG WARNING ERROR CRITICAL
log_level=INFO
; logging name
log_name=log_info.log
[UWSGI]
daemonize=/var/log/uwsgi.log
buffer-size=65536