Draft
Conversation
- Add `Proxy.certificate_check` setting (defaults to true for secure production) - Add `compute_host_header()` to properly format Host header with non-standard ports - Extend `ensure_origin_backend()` with certificate_check parameter - Include cert setting in backend name to avoid reusing backends with different settings - Add comprehensive tests for port preservation in proxy signing and HTML rewriting - Update all call sites to pass certificate_check=true (secure default) This fixes an issue where backends behind reverse proxies would generate URLs without the port when the Host header didn't include it.
- Add `IntegrationHeadInjector` trait allowing integrations to inject HTML into <head> - Add `with_head_injector()` builder method to IntegrationRegistrationBuilder - Add `head_inserts()` method to IntegrationRegistry to collect all injector snippets - Update html_processor to inject integration head inserts after TSJS bundle This enables integrations like GAM to inject configuration scripts into the document head without modifying the main TSJS bundle.
- Add `GamIntegrationConfig` with enabled, bidders, and force_render options - Implement `IntegrationHeadInjector` to inject GAM config script into <head> - Register GAM integration in the integration builder system - Add unit tests for config script generation Configuration example: ```toml [integrations.gam] enabled = true bidders = ["mocktioneer"] # Only intercept these bidders, empty = all force_render = false # Force render even if GAM has a line item ``` The injected script sets `window.tsGamConfig` which is picked up by the client-side GAM interceptor on initialization.
This was referenced Feb 5, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
GamIntegrationConfigwithenabled,bidders, andforce_renderoptionsIntegrationHeadInjectorto inject GAM config script into<head>Configuration
Or via environment variables:
TRUSTED_SERVER__INTEGRATIONS__GAM__ENABLED=true TRUSTED_SERVER__INTEGRATIONS__GAM__BIDDERS="mocktioneer,appnexus"The injected script sets
window.tsGamConfigwhich is picked up by the client-side GAM interceptor on initialization.Test plan
cargo checkpassescargo test -p trusted-server-commonpasses<script>window.tsGamConfig=...</script>appears in HTML headDependencies
Closes #248
Related to #179