Allow remote configuration
Adapters are currently only listening on localhost (127.0.0.1) causing them to be only accessible locally. For docker containers, they can only be accessed from within the container or directly on the host (with the --network host switch which results in not containerizing the container's networking) but they cannot be accessed for elsewhere (not able to bind them to 0.0.0.0)
This makes adapter management very difficult in distributed environment.

-
Fred_EYRAUD commented
Hello, We are testing PI Adapter on windows and have find a workaround by redirecting ports:
netsh interface portproxy add v4tov4 listenport=<YourConfigPort> listenaddress=<YourExternalPAddress> connectport=<YourConfigPort> connectaddress=127.0.0.1This working fine for us.
-
Gabriel Verreault commented
Would require https://feedback.osisoft.com/forums/930280-pi-adapters/suggestions/43629426-support-https-instead-of-http-only to be completed first