Performance isn't optional. Neither are we.

Talk to Us
Tech 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 / {        ...    }}