rembrembdocs

Configure Reverse Proxy and HTTPS

Set up a reverse proxy with HTTPS for self-hosted Supabase.


HTTPS is required for production self-hosted Supabase deployments. This guide covers two production approaches using a reverse proxy in front of self-hosted Supabase API gateway, plus a self-signed certificate option for development environment.

Before you begin#

You need:

Set up HTTPS#

Below are two options for adding a reverse proxy with automatic HTTPS in front of your self-hosted Supabase: Caddy (simpler, zero-config TLS) and Nginx + Let's Encrypt (more control over proxy settings). Both sit in front of Kong and terminate TLS, so internal traffic stays on HTTP.

Using a different reverse proxy?

If you already run HAProxy, Traefik, Nginx Proxy Manager, or another reverse proxy for your infrastructure, you can use it instead of Caddy or Nginx above. The key requirements are:

Step 1: Update environment variables#

Update the URL configuration in your .env file to use your HTTPS domain:

1SUPABASE_PUBLIC_URL=https://<your-domain>2API_EXTERNAL_URL=https://<your-domain>3SITE_URL=https://<your-domain>

Change the following to your domain name and a valid email address:

1PROXY_DOMAIN=your-domain.example.com2CERTBOT_EMAIL=admin@your-domain.example.com

Step 2: Start the reverse proxy#

Pick one of the options below and use the corresponding Docker Compose overlay.

Caddy automatically provisions and renews Let's Encrypt TLS certificates with zero configuration. It also handles HTTP-to-HTTPS redirects, WebSocket upgrades, and HTTP/2 and HTTP/3 out of the box.

Start Caddy by using the pre-configured docker-compose.caddy.yml overlay:

1docker compose -f docker-compose.yml -f docker-compose.caddy.yml up -d

Caddy configuration is in volumes/proxy/caddy/Caddyfile.

Step 3: Verify HTTPS connection#

1curl -I https://<your-domain>/auth/v1/

You should receive a 401 response confirming you could connect to Auth.

Self-signed certificates (development only)#

Self-signed certificates trigger browser warnings and are rejected by most OAuth providers. Use this approach only in development environment or internal networks.

For development or internal networks where you cannot use Let's Encrypt, you can configure Kong to serve HTTPS directly using self-signed certificates.

Step 1: Generate a self-signed certificate#

Change <your-domain> in the example below, and create certificates with openssl:

1openssl req -x509 -nodes -days 365 -newkey rsa:2048 \2  -keyout volumes/api/server.key \3  -out volumes/api/server.crt \4  -subj "/CN=<your-domain>" && \5  chmod 640 volumes/api/server.key && \6  chgrp 65533 volumes/api/server.key

Step 2: Configure Kong for SSL#

Comment out Kong's HTTP port mapping in docker-compose.yml:

1kong:2  # ...3  ports:4    #- ${KONG_HTTP_PORT}:8000/tcp

Uncomment the certificate volume mounts and SSL environment variables in docker-compose.yml:

1kong:2  # ... existing configuration ...3  volumes:4    - ./volumes/api/kong.yml:/home/kong/temp.yml:ro,z5    - ./volumes/api/server.crt:/home/kong/server.crt:ro6    - ./volumes/api/server.key:/home/kong/server.key:ro7  environment:8    # ... existing environment variables ...9    KONG_SSL_CERT: /home/kong/server.crt10    KONG_SSL_CERT_KEY: /home/kong/server.key

Step 3: Update configuration variables#

Edit your .env file to use HTTPS with the Kong HTTPS port:

1SUPABASE_PUBLIC_URL=https://<your-domain>:84432API_EXTERNAL_URL=https://<your-domain>:84433SITE_URL=https://<your-domain>:8443

Step 4: Restart and verify#

1docker compose down && docker compose up -d
1curl -I -k https://<your-domain>:8443/auth/v1/

The -k flag tells curl to accept the self-signed certificate.

Troubleshooting#

Certificate not issued#

If Caddy or Certbot fails to obtain a certificate:

WebSocket connection failed#

If Realtime subscriptions fail to connect:

OAuth callback URL mismatch#

If OAuth redirects fail with a callback URL error:

Mixed content warnings#

If the browser console shows mixed content errors:

ERR_CERT_AUTHORITY_INVALID#

This is expected when using self-signed certificates. For production, use Caddy or Nginx with Let's Encrypt. If you need to use self-signed certificates, add the certificate to your system's trust store or use a browser flag to bypass the warning.

Additional resources#