We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b12d12 commit 92ff592Copy full SHA for 92ff592
Caddyfile
@@ -1,3 +1,3 @@
1
-:80 {
+healthcareinfra.soham901.me {
2
reverse_proxy localhost:8000
3
}
docker-compose.yml
@@ -1,4 +1,17 @@
services:
+ caddy:
+ image: caddy:latest
4
+ restart: unless-stopped
5
+ ports:
6
+ - "80:80"
7
+ - "443:443"
8
+ - "443:443/udp"
9
+ volumes:
10
+ - ./Caddyfile:/etc/caddy/Caddyfile
11
+ - ./site:/srv
12
+ - caddy_data:/data
13
+ - caddy_config:/config
14
+
15
app:
16
build: .
17
ports:
@@ -19,3 +32,5 @@ services:
19
32
20
33
volumes:
21
34
db-data:
35
+ caddy_data:
36
+ caddy_config:
nginx.conf
0 commit comments