मैं वर्तमान में अपने 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>
मैं ट्रैफिक में स्विच करना चाहूंगा । मैंने इस विन्यास की कोशिश की है:
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"
- क्या ये दोनों बराबर हैं?
- क्या ट्रैफिक कॉन्फ़िगरेशन को सरल बनाया जा सकता है? (अनावश्यक नियम हटाएं)
(नोट: मैं डॉकटर का उपयोग करने की योजना नहीं बना रहा हूं, और मैं पसंद नहीं करूंगा।)