mbakturk commented on issue #1417:
URL: https://github.com/apache/trafficserver/issues/1417#issuecomment-1169076075

   Thanks @mlibbey for your answer. Unfortunately I forgot to mention that I 
use GET actions. I have "404 not found" problem when I send a GET request. Such 
as:
   
   curl http://localhost:8080
   
   and my auth server is a simple http server which always return "200"
   
   ```js
   var http = require('http');
   
   http.createServer(function (req, res) {
     res.write('Hi'); 
     res.end();
   }).listen(9000); 
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to