Initialize ansible and docker web stuff

This commit is contained in:
2021-11-11 18:12:47 +01:00
commit 0e9e7732b2
14 changed files with 148 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
h2954114.stratoserver.net {
file_server browse {
root /usr/share
}
}
+3
View File
@@ -0,0 +1,3 @@
FROM caddy
COPY Caddyfile /etc/caddy/Caddyfile
+3
View File
@@ -0,0 +1,3 @@
# web
Contains stuff exposed via HTTP(S) to the Internet, e.g. personal website, Wiki, etc.
+17
View File
@@ -0,0 +1,17 @@
version: "3"
services:
web:
image: pbrinkmeier/web
build: .
ports:
- 80:80
- 443:443
volumes:
- caddy_data:/data
- caddy_config:/config
restart: always
volumes:
caddy_data:
caddy_config: