We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
currently, the local addresses from the LocalHTTPProxy are always reported as e.g.:
http://localhost:8081
add a configuration option (in the yaml config file (not the app descriptor)) to allow specification of the address
http_proxy: address: "https://my.address.com",
allow the runner to limit the local ports available to be exposed by the run app:
http_proxy: ports: - "8080:9090" - "10000"
and allow only mappings within the specified ranges when choosing the port in _start_local_proxy
_start_local_proxy
when an app specifies an explicit port outside this range, raise a RunnerError
RunnerError
(+ possibly also move get_free_port to runner.util and also raise a RunnerError when it finds out there are no more available ports)
get_free_port
runner.util
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Allow configuration of the local address
currently, the local addresses from the LocalHTTPProxy are always reported as e.g.:
add a configuration option (in the yaml config file (not the app descriptor)) to allow specification of the address
Add local port limits
allow the runner to limit the local ports available to be exposed by the run app:
and allow only mappings within the specified ranges when choosing the port in
_start_local_proxy
when an app specifies an explicit port outside this range, raise a
RunnerError
(+ possibly also move
get_free_port
torunner.util
and also raise aRunnerError
when it finds out there are no more available ports)The text was updated successfully, but these errors were encountered: