We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65920fb commit 5117084Copy full SHA for 5117084
install-manifests/docker-compose-https/Caddyfile
@@ -1,6 +1,4 @@
1
# replace :80 with your domain name to get automatic https via LetsEncrypt
2
:80 {
3
- proxy / graphql-engine:8080 {
4
- websocket
5
- }
+ reverse_proxy graphql-engine:8080
6
}
install-manifests/docker-compose-https/docker-compose.yaml
@@ -22,18 +22,18 @@ services:
22
## uncomment next line to set an admin secret
23
# HASURA_GRAPHQL_ADMIN_SECRET: myadminsecretkey
24
command:
25
- - graphql-engine
+ - graphql-engine
26
- serve
27
caddy:
28
- image: abiosoft/caddy:0.11.0
+ image: caddy/caddy
29
depends_on:
30
- "graphql-engine"
31
restart: always
32
ports:
33
- "80:80"
34
- "443:443"
35
volumes:
36
- - ./Caddyfile:/etc/Caddyfile
+ - ./Caddyfile:/etc/caddy/Caddyfile
37
- caddy_certs:/root/.caddy
38
39
db_data:
0 commit comments