I'm running a NodeJS
App on NGINX
Web Server. I'm able to access all the URLs in my app via iframe
on other websites.
Here is my NGINX
conf:
proxy_hide_header X-Frame-Options;
How do I restrict the iframe to allow only 1 URL instead of all the URLs?
Also, how do I allow only a few domains to access via iframe
?
Can it be done via NGINX
or should it be handled via NodeJS
code?
iframe
. I don't want to restrict the domains, I want to allow only 1 URL iniframe
for any domain. – Crumbly