I am developing a rails application that clients can embed on their sites using iframes. I am looking for a way to allow only my clients to embed the app. I am familiar with the x-frame options, ie:
response.headers["X-Frame-Options"] = "ALLOW-FROM http://www.example.com"
(from X-Frame-Options ALLOW-FROM a specific site allows from all)
Is there a way to allow a number of sites?