bacb2f4b9f
Move parentheses outside Host() calls so that || and && operators are properly grouped in Traefik rule expressions.
24 lines
463 B
Plaintext
24 lines
463 B
Plaintext
http:
|
|
routers:
|
|
fs1-public:
|
|
rule: "Host(`fs1.domain.xyz`)"
|
|
entrypoints:
|
|
- websecure
|
|
service: fs1
|
|
middlewares:
|
|
- security-chain@file
|
|
tls: {}
|
|
|
|
fs1-workstation:
|
|
rule: "Host(`fs1.workstation.internal`)"
|
|
entrypoints:
|
|
- websecure
|
|
service: fs1
|
|
tls: {}
|
|
|
|
services:
|
|
fs1:
|
|
loadBalancer:
|
|
servers:
|
|
- url: "http://127.0.0.1:3923" # Copyparty port example
|