Skip to content

Commit 1a1eeee

Browse files
Dennis LabordusRob Tjalma
authored andcommitted
Changed BaseX Host and added Nginx Parameter.
Signed-off-by: Dennis Labordus <[email protected]> Signed-off-by: Rob Tjalma <[email protected]>
1 parent cf8e433 commit 1a1eeee

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

docker/docker-compose.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ version: "3.9"
77
services:
88
basex:
99
image: "basex/basexhttp:9.5.2"
10+
ports:
11+
- "1984:1984"
1012
volumes:
1113
- basex-data-volume:/srv/basex/data
1214
- basex-repo-volume:/srv/basex/repo
@@ -16,9 +18,10 @@ services:
1618
build: keycloak
1719

1820
scl-data-service:
19-
image: "lfenergycompas/compas-scl-data-service:0.1.0"
20-
ports:
21-
- "1984:1984"
21+
image: "lfenergycompas/compas-scl-data-service:0.1.1"
22+
environment:
23+
- BASEX_HOST=basex
24+
- BASEX_PORT=1984
2225
depends_on:
2326
- basex
2427

docker/reverse-proxy/nginx.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@ server {
22
listen 80;
33
server_name reverse-proxy;
44

5+
# set client body size to 150M #
6+
client_max_body_size 150M;
7+
58
# Default forward all web calls to the OpenSCD Container
69
location / {
710
proxy_set_header X-Real-IP $remote_addr;

0 commit comments

Comments
 (0)