Skip to content
New issue

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

fix incorrect geoserver URL in cowbird configuration #487

Merged
merged 4 commits into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@
[Unreleased](https://github.com/bird-house/birdhouse-deploy/tree/master) (latest)
------------------------------------------------------------------------------------------------------------------

[//]: # (list changes here, using '-' for each new entry, remove this when items are added)
## Fixes

- Fix incorrect Geoserver URL in Cowbird configuration

The Geoserver URL in the Cowbird configuration was incorrect as it used a non-standard port.
This change removes the port so that the URL will resolve properly. This allows Cowbird to execute
mishaschwartz marked this conversation as resolved.
Show resolved Hide resolved
webhooks that target Geoserver.

[2.6.4](https://github.com/bird-house/birdhouse-deploy/tree/2.6.4) (2024-12-09)
------------------------------------------------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@ handlers:
admin_password: ${MAGPIE_ADMIN_PASSWORD}
Geoserver:
active: true
# FIXME: replace by the protected/proxy endpoint once component is made available
url: http://${BIRDHOUSE_FQDN_PUBLIC}:8765/geoserver
url: http://geoserver:8080/geoserver
workspace_dir: ${WORKSPACE_DIR}
admin_user: ${GEOSERVER_ADMIN_USER}
admin_password: ${GEOSERVER_ADMIN_PASSWORD}
Expand Down
Loading