1
Proxy terbalik sederhana dengan Traefik
Saat ini saya menggunakan Apache sebagai proxy untuk wadah LXD saya, menggunakan pengaturan semacam ini: <VirtualHost *:80> ServerName example.com ProxyRequests off ProxyPass / http://10.0.0.142/ retry=0 ProxyPassReverse / http://10.0.0.142/ ProxyPreserveHost On </VirtualHost> Saya ingin beralih ke traefik . Saya sudah mencoba konfigurasi ini: defaultEntryPoints = ["http"] [entryPoints] [entryPoints.http] address = ":80" …