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
/
allow_outbound_hosts
Spin version (spin --version) spin 2.5.1 (cba6773 2024-05-14)
spin --version
Installed plugin versions (spin plugins list --installed) check-for-update 0.1.0 [installed] cloud 0.8.0 [installed] cloud-gpu 0.1.0 [installed] js2wasm 0.6.1 [installed] kube 0.1.1 [installed] pluginify 0.7.0 [installed] py2wasm 0.3.2 [installed] trigger-command 0.1 [installed] trigger-message 0.0.1 [installed] trigger-mqtt 0.2.0 [installed]
spin plugins list --installed
If I want to make an http call to https://myapi.com, the destination will be allowed using this configuration:
https://myapi.com
allowed_outbound_hosts = ["https://myapi.com"]
But will be denied with this configuration:
allowed_outbound_hosts = ["https://myapi.com/"]
The text was updated successfully, but these errors were encountered:
@rylev
Sorry, something went wrong.
Strip trailing slash in allowed_outbound_hosts config.
allowed_outbound_hosts
f78a108
Fixes #2545
b1fa54e
Fixes #2545 Signed-off-by: Ryan Levick <ryan.levick@fermyon.com>
Successfully merging a pull request may close this issue.
Spin version (
spin --version
)spin 2.5.1 (cba6773 2024-05-14)
Installed plugin versions (
spin plugins list --installed
)check-for-update 0.1.0 [installed]
cloud 0.8.0 [installed]
cloud-gpu 0.1.0 [installed]
js2wasm 0.6.1 [installed]
kube 0.1.1 [installed]
pluginify 0.7.0 [installed]
py2wasm 0.3.2 [installed]
trigger-command 0.1 [installed]
trigger-message 0.0.1 [installed]
trigger-mqtt 0.2.0 [installed]
If I want to make an http call to
https://myapi.com
, the destination will be allowed using this configuration:allowed_outbound_hosts = ["https://myapi.com"]
But will be denied with this configuration:
allowed_outbound_hosts = ["https://myapi.com/"]
The text was updated successfully, but these errors were encountered: