mirror of
https://github.com/notherealmarco/vue-quic-test.git
synced 2025-05-05 12:32:34 +02:00
Initial commit
This commit is contained in:
parent
78d8503304
commit
35dc9ea7ce
23 changed files with 2229 additions and 0 deletions
23
docker-compose.yml
Normal file
23
docker-compose.yml
Normal file
|
@ -0,0 +1,23 @@
|
|||
# this is an example docker-compose script to run the project under the Traefik reverse proxy
|
||||
# Adjust the file as needed
|
||||
|
||||
version: "3.0"
|
||||
services:
|
||||
web:
|
||||
build: .
|
||||
hostname: quictest
|
||||
networks:
|
||||
- proxynet
|
||||
|
||||
# If you're using Traefik, adjust the labels as needed. Remove them if you're going to use a different reverse proxy
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.quictest.entrypoints=web, websecure"
|
||||
- "traefik.http.routers.quictest.rule=Host(`quic-test.marcorealacci.me`)"
|
||||
- "traefik.http.routers.quictest.tls=true"
|
||||
- "traefik.http.routers.quictest.tls.certresolver=production"
|
||||
|
||||
# You should use your reverse proxy's network here
|
||||
networks:
|
||||
proxynet:
|
||||
external: true
|
Loading…
Add table
Add a link
Reference in a new issue