Search AI Powered

Latest Stories

Documentation

Integrations

RebelBoost Integration in Nginx

Add this location directive to your server config:

server {    ...    # rebelboost    location /blog {        proxy_pass https://ingress.rebelboost.com;        proxy_set_header X-Forwarded-Host $host;        proxy_buffer_size 16k;        proxy_buffers 16 16k;    }    # end rebelboost    location / {        ...    }}

Table of Contents