You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

Frequently Asked Questions

Welcome to the Apache Traffic Server FAQ.
Below is a list of frequently asked questions pertaining to Apache Traffic Server.

  1. What Platforms does Traffic Server support
  2. 'sudo make install' fails with '/usr/bin/install: invalid group nobody'
  3. How do I enable forward proxy mode?
  4. How do I access POST data in a Traffic Server plugin
  5. How do I enable DNS lookups?
  6. How do I enable SSL between Client/ATS/Origin end points?
  7. More questions?
What Platforms does Traffic Server support
'sudo make install' fails with '/usr/bin/install: invalid group nobody'
  • The default installed user is 'nobody' and the default group is 'nobody'.
  • You can specify the installed group via:
    shell
    # It is very important to do a clean uninstall and distclean before
    # re-configuring, re-building, and re-installing after the failed
    # first install.
    sudo make uninstall
    sudo make distclean
    configure i.e './configure --with-group=nogroup'
    
How do I enable forward proxy mode?
  • Forward proxy mode is not enabled out of the box for security reasons. When enabling any proxy on the internet, you want to make sure you observe pertinent security restrictions. Having an open proxy available to internet users is a bad thing. If you understand this and are sure you know what you are doing, go ahead and enable:

CONFIG proxy.config.url_remap.remap_required INT 0

inside

/usr/local/etc/trafficserver/records.config

How do I access POST data in a Traffic Server plugin
More Frequently Asked Questions?
How do I enable DNS lookups?
How do I enable SSL between Client/ATS/Origin end points?
  • No labels