Created
December 9, 2017 20:13
-
-
Save thiagosf/c7e8c343ef50bf1836865fc670ccb43e to your computer and use it in GitHub Desktop.
Correção do problema com X-Frame-Options no NGINX
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Load denied by X-Frame-Options does not permit framing. | |
| location ~ \.php$ { | |
| add_header X-Frame-Options SAMEORIGIN; | |
| # ... | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment