Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Local Jenkins Workspaces
    • Should be safe to delete in almost all cases
  • Tomcat Logs
    • See `/scratch/$USER/tomcat(70|85)/logs`
    • Delete old common_access, probe, and wrapper logs

Proxies (nginx)

When behind an HTTP proxy (nginx, aka resty - but also apache or firewall) - server.xml MUST be configured properly.

This means server.xml needs a RemoteIpValve configured. Below is an example for nginx (configured against 4 different nginx servers).


Code Block
         <Valve className="org.apache.catalina.valves.RemoteIpValve" 
              internalProxies="134.79.129.91|134.79.129.92|134.79.129.11|134.79.129.13"
              remoteIpHeader="x-forwarded-for"
              remoteIpProxiesHeader="x-forwarded-by"
              protocolHeaderHttpsValue="https"
              protocolHeader="X-Forwarded-Proto" />