Our live offers, updated continuously. Configure a deal and enquire — it's quick and there's no obligation.
1. iframe embed (used above) — works on any host, no server config. Just keep the snippet and make sure this site's domain is in your OffaHub "Allowed embed domains".
2. Reverse proxy — serve the deals under your own domain/path (no iframe). Needs a web server (Nginx/Apache). Example Nginx:
location /leasing/ {
proxy_pass https://embed.offahub.com/YOUR-EMBED-KEY/;
proxy_set_header Host embed.offahub.com;
proxy_ssl_server_name on;
}
See README.md for full publishing + integration notes.