File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ LIZMAP_GROUP_ID ?= $(shell id -g)
16
16
PHP_VERSION ?= 8.2
17
17
LZMPOSTGISVERSION ?= 14-3
18
18
LZMQGSRVVERSION ?= 3.34
19
+ QGSRVAPIPORT ?= 8134
19
20
LZMPGPORT ?= 8132
20
21
LZMQGSRVPORT ?= 8131
21
22
LZMWEBPORT ?= 8130
37
38
LZMPGPORT=$(LZMPGPORT )
38
39
LZMQGSRVPORT=$(LZMQGSRVPORT )
39
40
LZMWEBPORT=$(LZMWEBPORT )
41
+ QGSRVAPIPORT=$(QGSRVAPIPORT )
40
42
LIZMAP_ADMIN_LOGIN=$(LIZMAP_ADMIN_LOGIN )
41
43
LIZMAP_ADMIN_EMAIL=$(LIZMAP_ADMIN_EMAIL )
42
44
LIZMAP_ADMIN_DEFAULT_PASSWORD_SOURCE=$(LIZMAP_ADMIN_DEFAULT_PASSWORD_SOURCE )
Original file line number Diff line number Diff line change @@ -157,14 +157,17 @@ Example:
157
157
export LZMPGPORT=8150
158
158
export LZMWEBPORT=8151
159
159
export LZMQGSRVPORT=8152
160
+ export QGSRVAPIPORT=8134
160
161
161
162
./run-docker up -d
162
163
163
- # you can then open browser at http://localhost:8151/
164
+ # you can then open browser at :
165
+ # http://localhost:8151/ for Lizmap Web Client
166
+ # http://localhost:8134/ for Py-QGIS-Server
164
167
165
168
```
166
169
167
- ## Changing PHP, postgresql and QGIS versions
170
+ ## Changing PHP, PostgreSQL and QGIS versions
168
171
169
172
You can change the version of some softwares to use, by setting
170
173
some environment variables:
Original file line number Diff line number Diff line change @@ -80,6 +80,8 @@ services:
80
80
QGSRV_CACHE_STRICT_CHECK : yes
81
81
QGSRV_LOGGING_LEVEL : DEBUG
82
82
QGSRV_SERVER_PLUGINPATH : /srv/qgis-server-plugins
83
+ QGSRV_MANAGEMENT_ENABLED : yes
84
+ QGSRV_MANAGEMENT_INTERFACES : " 0.0.0.0"
83
85
QGSRV_SERVER_WORKERS : 4
84
86
QGSRV_USER : ${LIZMAP_USER_ID}:${LIZMAP_GROUP_ID}
85
87
ROUTER_HOST : map
@@ -90,6 +92,7 @@ services:
90
92
- { type: bind, source: ./docker-conf/pg_service.conf, target: /srv/etc/pg_service.conf }
91
93
ports :
92
94
- ${LZMQGSRVPORT}:8080
95
+ - ${QGSRVAPIPORT}:19876
93
96
webdav :
94
97
container_name : lizmap${LZMBRANCH}_test_webdav
95
98
image : ugeek/webdav:amd64
You can’t perform that action at this time.
0 commit comments