From b9d7d3ade5dad9227ac8d843efcadbf3b1174f8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kasper=20Rynning-T=C3=B8nnesen?= Date: Sun, 2 Dec 2018 13:53:49 +0100 Subject: [PATCH] Added ads.txt --- server/public/assets/ads.txt | 58 ++++++++++++++++++++++++++ server/routing/client/icons_routing.js | 4 ++ 2 files changed, 62 insertions(+) create mode 100644 server/public/assets/ads.txt diff --git a/server/public/assets/ads.txt b/server/public/assets/ads.txt new file mode 100644 index 00000000..8bfde119 --- /dev/null +++ b/server/public/assets/ads.txt @@ -0,0 +1,58 @@ +Infolinks.com, 3147936 , DIRECT +google.com, pub-4299156005397946, RESELLER, f08c47fec0942fa0 +appnexus.com, 3251, RESELLER +appnexus.com, 1908, RESELLER, f5ab79cb980f11d1 +openx.com, 118151, RESELLER, 6a698e2ec38604c6 +openx.com, 540118184, DIRECT, 6a698e2ec38604c6 +Pubmatic.com, 60809,RESELLER,5d62403b186f2ace +Adtech.com, 11409, RESELLER +google.com, pub-6373315980741255, RESELLER, f08c47fec0942fa0 +google.com, pub-9685734445476814, RESELLER, f08c47fec0942fa0 +aol.com, 6202, RESELLER +aol.com, 17744, RESELLER +lkqd.net, 295, RESELLER, 59c49fa9598a0117 +lkqd.com, 295, RESELLER, 59c49fa9598a0117 +Freewheel.tv, 482337, RESELLER +Freewheel.tv, 480609, RESELLER +revcontent.com, 29124, RESELLER +appnexus.com, 7666, RESELLER, f5ab79cb980f11d1 +rubiconproject.com, 156042, RESELLER, 0bfd66d529a55807 +advertising.com, 8603, RESELLER +advertising.com, 3531, RESELLER +appnexus.com, 3364, RESELLER +Indexexchange.com, 183756, RESELLER +openx.com, 539154393, RESELLER +rubiconproject.com, 16698, RESELLER, 0bfd66d529a55807 +deepintent.com, 100004190, RESELLER, 4a5487c769369a8c +pubmatic.com, 156872, RESELLER, 5d62403b186f2ace +taboola.com, 1139936,RESELLER,c228e6794e811952 +taboola.com, 1135488,RESELLER,c228e6794e811952 +vi.ai, 913453223927387, RESELLER +spotxchange.com, 74964, RESELLER, 7842df1d2fe2db34 +spotx.tv, 74964, RESELLER, 7842df1d2fe2db34 +smartadserver.com, 2776,RESELLER +pubmatic.com, 156830, RESELLER +rubiconproject.com, 15476, RESELLER, 0bfd66d529a55807 +contextweb.com, 559988, RESELLER, 89ff185a4c4e857c +rhythmone.com, 2221906906,DIRECT,a670c89d4a324e47 +districtm.io, 101519, RESELLER +coxmt.com, 2000067907202, RESELLER +openx.com, 537143344, RESELLER +indexexchange.com, 175407, RESELLER +pubmatic.com,156078, RESELLER, 5d62403b186f2ace +33across.com, 0010b00002CpYhEAAV, RESELLER, bbea06d9c4d2853c +rubiconproject.com, 16414, RESELLER, 0bfd66d529a55807 +pubmatic.com, 156423, RESELLER, 5d62403b186f2ace +rhythmone.com, 2439829435, RESELLER, a670c89d4a324e47 +indexexchange.com, 185506, RESELLER +appnexus.com, 1356, RESELLER, f5ab79cb980f11d1 +emxdgt.com, 326,RESELLER, 1e1d41537f7cad7f +sonobi.com, f0e1159c80, RESELLER +Smartadserver.com,3238,RESELLER +contextweb.com,560288,RESELLER,89ff185a4c4e857c +pubmatic.com,156439,RESELLER +pubmatic.com, 154037,RESELLER +rubiconproject.com,16114,RESELLER, 0bfd66d529a55807 +openx.com,537149888,RESELLER,6a698e2ec38604c6 +sovrn.com, 257611,RESELLER, fafdf38b16bf6b2b +appnexus.com,3703,RESELLER,f5ab79cb980f11d1 diff --git a/server/routing/client/icons_routing.js b/server/routing/client/icons_routing.js index 113f12a5..30166468 100644 --- a/server/routing/client/icons_routing.js +++ b/server/routing/client/icons_routing.js @@ -9,6 +9,10 @@ router.route('/favicon.ico').get(function(req, res, next) { res.sendFile(path.join(pathThumbnails, '/public/assets/images/favicon.ico')); }); +router.route('/ads.txt').get(function(req, res, next) { + res.sendFile(path.join(pathThumbnails, '/public/assets/ads.txt')); +}); + router.route('/browserconfig.xml').get(function(req, res, next) { res.sendFile(path.join(pathThumbnails, '/public/assets/images/browserconfig.xml')); });