We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41873fe commit eee5d40Copy full SHA for eee5d40
nginx/nginx.tmpl
@@ -17,6 +17,10 @@ http {
17
server {
18
include /etc/nginx/mime.types;
19
default_type application/octet-stream;
20
+ # ---- Clickjacking protection ----
21
+ add_header Content-Security-Policy "frame-ancestors 'none'" always;
22
+ add_header X-Frame-Options "DENY" always;
23
+ # --------------------------------
24
sendfile on;
25
keepalive_timeout 65;
26
listen 8080;
0 commit comments