From ce632134a672cd039d0c95ee5028c51cd5ff0cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Deivydas=20=C5=A0abaras?= Date: Thu, 8 Apr 2021 14:47:18 +0100 Subject: [PATCH] Prebid server adapter: add config for openx hosting (#6530) --- modules/prebidServerBidAdapter/config.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/modules/prebidServerBidAdapter/config.js b/modules/prebidServerBidAdapter/config.js index 56e4fdfbfef..3a8f0b05f43 100644 --- a/modules/prebidServerBidAdapter/config.js +++ b/modules/prebidServerBidAdapter/config.js @@ -13,5 +13,12 @@ export const S2S_VENDORS = { endpoint: 'https://prebid-server.rubiconproject.com/openrtb2/auction', syncEndpoint: 'https://prebid-server.rubiconproject.com/cookie_sync', timeout: 500 + }, + 'openx': { + adapter: 'prebidServer', + enabled: true, + endpoint: 'https://prebid.openx.net/openrtb2/auction', + syncEndpoint: 'https://prebid.openx.net/cookie_sync', + timeout: 1000 } }