feat: impl catch-all for parked domains
This commit is contained in:
parent
d1ad7378de
commit
936991dc59
2 changed files with 16 additions and 0 deletions
|
@ -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;
|
||||
}
|
||||
}
|
|
@ -19,6 +19,11 @@ services:
|
|||
networks:
|
||||
- proxy
|
||||
|
||||
pdsite:
|
||||
image: git.ixvd.net/ixvd/pdsite
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
# Here the default networks are defined
|
||||
networks:
|
||||
proxy:
|
||||
|
|
Loading…
Reference in a new issue