feat: impl catch-all for parked domains

This commit is contained in:
Strix 2023-12-20 03:07:55 +01:00
parent d1ad7378de
commit 936991dc59
No known key found for this signature in database
GPG key ID: 5F35B3B8537287A7
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,11 @@
server {
listen 80;
server_name _;
# SSL is managed by certbot, no need for a ssl listen; it will be generated automagically!
# default html page
location / {
proxy_pass http://pdsite;
}
}

View file

@ -19,6 +19,11 @@ services:
networks:
- proxy
pdsite:
image: git.ixvd.net/ixvd/pdsite
networks:
- proxy
# Here the default networks are defined
networks:
proxy: