I have deployed a django web application on a server with nginx and uwsgi. I can access the site perfectly using the ip address.
I purchased a domain name say abc.example.com and pointed it to my ip address. Now when i go the domain name it loads a blank page and throws an error in browser console:
In Chrome:
Refused to display 'ip address' in a frame because it set 'X-Frame-Options' to 'SAMEORIGIN'.
In Mozilla:
Load denied by X-Frame-Options: 'ip address' does not permit cross-origin framing.
The point is I dont have any iframe in my whole Application.
What is this error and how can i solve it?
When i go to application using ip address it works perfectly as it is supposed to be. Then what is the problem with domain? I double checked the settings in dns zone on godaddy but couldn't figure out anything.
settings.py
hasX_FRAME_OPTIONS
parameter. Try changing it's value toDENY
, according to docs.djangoproject.com/ja/1.9/ref/clickjacking/… . If this will not help, try to disable middleware to see what happens. – Existence