Hi team, I'm using WireMock standalone version being run in an Azure container, and I’m running into issues with proxying and mapping creation. I’d like to configure WireMock to use custom mappings when available and proxy all other requests to the real API.
Current setup in terraform:
"WIREMOCK_OPTIONS" = "--port 55555 --proxy-all
https://xxx --record-mappings --verbose"
Issue:
• With --proxy-all enabled, custom mappings are not created through the API and even if I create them manually, they are ignored, and all requests are proxied directly to the real API.
• Without --proxy-all, mappings are created via API and work fine, but unmatched requests are not proxied to the real API.
Any guidance on getting this setup to work correctly would be appreciated.
Thank you!