Hello ![]()
in openmediavault you are able to specify proxy settings.
This happens under Network - Proxy Settings
Here I can make settings for a http and https proxy. In our case we use a http proxy for both http and https connections.
But in the settings in openmediavault under the settings for a https proxy I can only enter the host, port, username and password, but not the protocol.
These settings are then transferred to the file etc/profile.d/10openmediavault-proxy.sh as follows:
export http_proxy="http://proxy.example.com:8080"
export HTTP_PROXY="${http_proxy}"
export https_proxy="https://proxy.example.com:8080"
export HTTPS_PROXY="${https_proxy}"
I would need it like this though:
export http_proxy="http://proxy.example.com:8080"
export HTTP_PROXY="${http_proxy}"
export https_proxy="http://proxy.example.com:8080"
export HTTPS_PROXY="${https_proxy}"
Based on the fact that I can't select a protocol for the proxy server under the https settings in openmediavault, it looks like a bug to me, since a description export https_proxy="http://proxy.example.com:8080" is generally allowed.
How do you guys see this? Is this a bug or should this be more of a feature enhancement request?
Best regards
Christoph