Questions tagged [apache-traffic-server]

Apache Traffic Server software is a fast, scalable and extensible HTTP/1.1 compliant caching proxy server.

Apache Traffic Server software is a fast, scalable and extensible HTTP/1.1 compliant caching proxy server. Formerly a commercial product, Yahoo! donated it to the Apache Foundation, and it is now an Apache TLP.

Useful Links

43 questions
1
vote
0 answers

Apache Traffic Server: segmentation fault on request transformation

I'm trying to write a simple encryption/decryption plugin for Apache Traffic Server. The plugin should transform requests/responses in order to encrypt/decrypt them. I decided to use LUA https://github.com/portl4t/ts-lua function encrypt(data, eos) …
pAkY88
  • 6,262
  • 11
  • 46
  • 58
1
vote
1 answer

Buffered uploading via HTTP Proxy

I am trying to solve an issue with uploads to our web infastructure. When a user uploads media to our site, it is proxied (via our Web Proxy tier) to a Java backend with a limited number of threads. When a user has a slow connection or a large…
0
votes
1 answer

add trailing slash traffic server

How should I add o a trailing slash at the end of a URL in apache traffic server? I checked that in normal Apache using rewrite and regex with the following configuration, if the user does not add a slash at the end of the url, it can be entered in…
0
votes
1 answer

add trailing slash from URL of apache traffic server

How should I add o a trailing slash from the end of a URL in apache traffic server? all syntax are changed in apache traffic server. this is a rotin config for add slash in normal apache your textRewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f…
0
votes
1 answer

Why Apache Traffic Server does not cache https content even though SSL termination has been setup?

I'm using ATS as forward proxy. The http content cache without any problem, but the https content just don't work. Here are my configures. # records.config CONFIG proxy.config.http.server_ports STRING 8125 8443:ssl CONFIG…
Gahoo
  • 215
  • 2
  • 9
0
votes
0 answers

Apache traffic server minimum config return 404

I am following the instruction mentioned in https://docs.trafficserver.apache.org/en/9.1.x/getting-started/index.en.html#final-configurations I created files as below records.config $ sudo cat /etc/trafficserver/records.config CONFIG…
Nilesh
  • 20,521
  • 16
  • 92
  • 148
0
votes
0 answers

Apache Traffic Server with AuthProxy plugin not works to HTTPS origin server

I'm configuring Apache Traffic server as a proxy to be used as an intermediator between clients and one external API. I need to implement a custom authentication service to be used together the AuthProxy plugin as discribed in documentation…
Gean Ribeiro
  • 1,025
  • 2
  • 10
  • 23
0
votes
0 answers

Apache traffic server: Skip cache if cookie is present

Is there a way to skip the cache in apache traffic server if there's a cookie present? I wanted to add Apache Traffic Server before our Nginx server to cache static content for not logged users but I can't see a way to only serve the cached document…
Khriz
  • 5,888
  • 6
  • 34
  • 39
0
votes
1 answer

Abusing Host Header Injection to access customized Apache Traffic Server Protocol

I came across a HTTP HELP method (https://portswigger.net/research/cracking-the-lens-targeting-https-hidden-attack-surface chapter "Invalid Host") and asked myself: Are there any more systems that offer something like that? I was wondering how did…
0
votes
1 answer

How do I configure apache-traffic-server to forward an http request to an https remote server?

I have an esp8266 which was directly sending http requests to http://fcm.googleapis.com/fcm/send but since google seems have stopped allowing requests to be send via http, I need to find a new solution. I started down a path to have the esp8266…
nPn
  • 16,254
  • 9
  • 35
  • 58
0
votes
2 answers

Setting up a forward proxy using Apache Traffic Server which forwards all request to another proxy and caches responses

Setting up a forward proxy using Apache Traffic Server which forwards all request to another proxy and caches responses. I want to setup caching in front of my crawlers so that unwanted js and CSS requests can be cached all the time. I already have…
Appunni M
  • 83
  • 3
  • 9
0
votes
1 answer

Apache Traffic Server: Ignoring specific parameter in url query when logging

Currently I use the ats_generic_config.custom_log_format='url=%' to log the request url. The result will be like 'url=http://example.com:4080/abc?aa=AA&bb=BB&cc=CC'. However, the cc parameter contains some sensitive data and I want to strip…
Hard Mode
  • 45
  • 2
  • 6
0
votes
1 answer

Positioning Apache traffic server between client and ISP

Can AST be placed between clients and ISP directly and used as a transparent proxy server? I don't intend to cache anything or hide my own web server. I just need to filter some content at HTML level.
Pankaj Sejwal
  • 1,605
  • 1
  • 18
  • 27
0
votes
2 answers

When Authorization header is present in the request, its' always a Cache Miss

When Authorization header present in the inbound request, it's always a Cache Miss. My requirement is, I need ATS to treat the Authorization header like any other header (It should not cause cache miss and it should get forwarded to upstream…
so-random-dude
  • 15,277
  • 10
  • 68
  • 113
0
votes
1 answer

Apache Traffic Server Cluster 7.1.1

i am trying to configure a cluster between two Apache Traffic Server, version 7.1.1, following the instructions on http://www.divedeepstaylong.com/admin-guide/configuration/multi-server-caches.en.html#full-clustering. This is my records.config…