feat: default nginx config

This commit is contained in:
Strix 2023-10-20 02:09:03 +02:00
parent ee4b9a6ee6
commit b9950596bb
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
6 changed files with 137 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# 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"
CERTBOT_DOMAINS: ""
ports:
- 8080:80
- 443:443
networks:
- proxy
# Here the default networks are defined
networks:
proxy:
external: true
internal:
external: true