2023-10-22 14:47:10 +02:00
|
|
|
# I'm very comfortable in this version, therefore it's the standard
|
|
|
|
version: '2.2'
|
|
|
|
|
|
|
|
services:
|
|
|
|
# default nginx setup
|
|
|
|
nginx:
|
|
|
|
build: custom/nginx
|
|
|
|
environment:
|
|
|
|
CERTBOT_EMAIL: "webmaster@ixvd.net"
|
2023-10-26 14:45:19 +02:00
|
|
|
CERTBOT_DOMAINS: "kid.ixvd.net,fedi.ixvd.net,matrix.ixvd.net,search.ixvd.net,pad.ixvd.net,sandbox.pad.ixvd.net,bin.ixvd.net"
|
2023-10-22 14:47:10 +02:00
|
|
|
volumes:
|
|
|
|
- /srv/certbot/data:/etc/letsencrypt
|
|
|
|
- /srv/certbot/other/www:/var/www/certbot
|
|
|
|
ports:
|
|
|
|
- 80:80
|
|
|
|
- 443:443
|
|
|
|
networks:
|
|
|
|
- proxy
|
|
|
|
|
|
|
|
# Here the default networks are defined
|
|
|
|
networks:
|
|
|
|
proxy:
|
|
|
|
external: true
|
|
|
|
internal:
|
|
|
|
external: true
|
|
|
|
|