We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c27aadc commit 9ddd9baCopy full SHA for 9ddd9ba
2 files changed
zarf/docker/config/default.conf
@@ -0,0 +1,13 @@
1
+server {
2
+ listen 8080;
3
+ server_name localhost;
4
+
5
+ location / {
6
+ root /usr/share/nginx/html;
7
+ index index.html index.htm;
8
+ }
9
10
+ location /v1 {
11
+ proxy_pass http://olive-server:3000/v1;
12
13
+}
zarf/docker/docker-compose.yaml
@@ -49,6 +49,8 @@ services:
49
- olive-server
50
ports:
51
- "8080:8080"
52
+ volumes:
53
+ - ./config/default.conf:/etc/nginx/conf.d/default.conf
54
networks:
55
- olive-network
56
0 commit comments