Okay i will just use flask or whatever where i explicitly set it as:
response.headers["X-Frame-Options"] = "DENY"
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello there,
I deployed an streemlit app to azure web app, so requirements.txt and one other .py file; hosting is done by running the command below
python -m streamlit run app.py --server.port 8000 --server.address 0.0.0.0
The issue is that anyone can embed my application using the
I have CORS disabled, but is there in azure portal setting, where i can explicitly set what headers to accept and which ones not??
Because i would like to deny all iframe embedding requests, maybe except a one chosen url.
Thanks for your help!
Okay i will just use flask or whatever where i explicitly set it as:
response.headers["X-Frame-Options"] = "DENY"