forked from jancelin/docker-lizmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.env
More file actions
50 lines (41 loc) · 1.46 KB
/
database.env
File metadata and controls
50 lines (41 loc) · 1.46 KB
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
#postgresql database server host
#MANDATORY
POSTGRES_HOST=
#example : POSTGRES_HOST=postgis
#postgresql database user
#MANDATORY
POSTGRES_USER=
#example : POSTGRES_USER=user_lizmap
#postgresql database user's password
#MANDATORY
POSTGRES_PASS=
#example : POSTGRES_PASS=xxx
#Time in second for lizmap container to wait before attempting to connect to postgis container
#mandatory
LIZMAP_SLEEP=20
#example : LIZMAP_SLEEP=20
#postgresql database name
#MANDATORY
POSTGRES_DBNAME=
#example : POSTGRES_DBNAME=lizmap
#link to a SQL DDL used to populate POSTGRES_DBNAME
#optional : leave blank to not populate POSTGRES_DBNAME
POSTGRES_DUMP=
#example : POSTGRES_DUMP=https://framagit.org/2P2R/sdcatmap2p2r/raw/master/qgis_project/SDCAtMap2P2R_v1.sql
#postgresql database name for authentication managment in lizmap
#optional : if blank, default sqlite database is used
POSTGRES_DB_AUTH_NAME=
#example : POSTGRES_DB_AUTH_NAME=lizauth
#postgresql database name for log managment in lizmap
#optional only if POSTGRES_DB_AUTH_NAME is blank : if blank, default sqlite database is used
POSTGRES_DB_LOGS_NAME=
#example : POSTGRES_DB_LOGS_NAME=lizlogs
#configuration serveur QGIS dans le container qgiserver
#MANDATORY : absolute pathe to the .qgs file, e.g. /home/veloMax/velomax.qgs
QGIS_PROJECT_FILE=
#QGIS Debug level
QGIS_DEBUG=5
#Path to the QGIS log file
QGIS_LOG_FILE=/tmp/qgis.log
QGIS_SERVER_LOG_FILE=/tmp/qgis.log
QGIS_SERVER_LOG_LEVEL=0