Running behind a proxy

Last updated:

|Edit this page

If you're running PostHog behind a proxy, there are a few more things you need to do to make sure PostHog works. You usually need this if running behind a web server like Apache or NGINX, a load balancer (like ELB), or a DDoS protection service (like Cloudflare).

Setup

If PostHog is running behind a proxy, you need to do the following:

  • Set the IS_BEHIND_PROXY environment variable to True. This will make sure the client's IP address is properly calculated, and SSL is properly handled (e.g. for OAuth requests).
  • Set your trusted proxies configuration.
  • Depending on your setup, you might also need to set the ALLOWED_HOSTS environment variable. If you don't allow all hosts (i.e. you are allowlisting specific hosts), you will need to set the address(es) of your proxy here.
Note: It is suggested to set up the proxy separately from PostHog's Docker Compose definition.

Trusted proxies

Trusted proxies are used to determine which proxies to consider as valid from the X-Forwarded-For HTTP header included in all requests to determine the end user's real IP address. Specifically allowlisting your proxy server's address prevents spoofing of the end user's IP address while ensuring your service works as expected. There are two ways of setting up trusted proxies.

  • Recommended. Set a list of trusted IP addresses for your proxies via the TRUSTED_PROXIES environment variable (comma-separated list of IP addresses).
  • Trust all proxies by setting TRUST_ALL_PROXIES environment variable to True (not recommended unless you have a strong reason for which allowlisting specific addresses wouldn't work for you).

Common issues

  • Some users have reported getting infinite redirects when running behind a proxy. Make sure the X-Forwarded-Proto header is set to https if you have HTTPS enabled. Alternatively, you can set the DISABLE_SECURE_SSL_REDIRECT variable to make PostHog run using HTTP.
    • If you use a load balancer, it is recommended to terminate the SSL connection at the load balancer (remember to set DISABLE_SECURE_SSL_REDIRECT to True) and connect via HTTP to your PostHog container (make sure your container is behind a firewall or VPC to prevent unauthorized connections), you would then enforce SSL/TLS connections at the load balancer level.
  • If you have IP blocks that are not working and you're running behind a proxy, your instance may be misconfigured, preventing PostHog from determining the connecting IP address.

Public endpoints

If you're setting up a proxy to protect your PostHog instance and prevent access only through an authorized connection, you should consider there are some endpoints that must always be publicly accessible in order for event ingestion, session recording and feature flags to work properly. These endpoints are listed below.

PathDescription
/batchEndpoint for ingesting/capturing events.
/decideEndpoint that enables autocapture, session recording, feature flags & compression on events.
/captureEndpoint for ingesting/capturing events.
/eEndpoint for ingesting/capturing events.
/engageEndpoint for ingesting/capturing events.
/sEndpoint for capturing session recordings.
/static/array.jsFrontend javascript code that loads posthog-js.
/static/recorder-v2.jsFrontend javascript code that loads recordings v2 in posthog-js.
/static/recorder.jsFrontend javascript code that loads recordings in posthog-js.
/static/surveys.jsFrontend javascript code that loads surveys in posthog-js.
/trackEndpoint for ingesting/capturing events.

You need to make sure your proxy server is sending X-Forwarded-For headers. For NGINX, that config should look something like this:

nginx
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8000;
}

Apache2 config

You need the proxy proxy_http and proxy_html modules enabled. To do this, run sudo a2enmod proxy proxy_http proxy_html.

Make sure SSL is enabled, and include the X-Forwarded-Proto header so that PostHog knows it.

apacheconf
<VirtualHost *:443>
ProxyPass / http://0.0.0.0:8000/
RequestHeader set X-Forwarded-Proto expr=%{REQUEST_SCHEME}
# SSL & other config here
</VirtualHost>

Questions?

Was this page useful?

Next article

Configuring email

PostHog's core relies on email messaging for certain functionality. For example: Sending a reset link to a user that has forgotten their password. Sending an invite link for new team members to join PostHog. By default, PostHog will not send email messages until you enable an SMTP server. We very strongly recommend using an email service to act as email server (see examples below for most common providers). These providers are optimized to maximize email deliverability. To prevent spam, most…

Read next article