ปัจจุบันฉันใช้ Apache เป็นพร็อกซีสำหรับคอนเทนเนอร์ LXD ของฉันโดยใช้การตั้งค่าประเภทนี้:
<VirtualHost *:80>
ServerName example.com
ProxyRequests off
ProxyPass / http://10.0.0.142/ retry=0
ProxyPassReverse / http://10.0.0.142/
ProxyPreserveHost On
</VirtualHost>
ผมอยากจะเปลี่ยนไปtraefik ฉันได้ลองกำหนดค่านี้:
defaultEntryPoints = ["http"]
[entryPoints]
[entryPoints.http]
address = ":80"
[backends]
[backends.backend1]
[backends.backend1.servers.server1]
url = "http://10.0.0.142"
[frontends]
[frontends.frontend1]
backend = "backend1"
passHostHeader = true
[frontends.frontend1.routes.example]
rule = "Host:example.com"
- สองสิ่งนี้เทียบเท่ากันหรือไม่
- การกำหนดค่า Traefik สามารถลดความซับซ้อนได้หรือไม่? (ลบกฎที่ไม่จำเป็น)
(หมายเหตุ: ฉันไม่ได้วางแผนที่จะใช้นักเทียบท่าและฉันไม่ต้องการ)