Changes between Version 1 and Version 2 of Ticket #40020, comment 8
- Timestamp:
- 04/10/2018 02:20:35 PM (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #40020, comment 8
v1 v2 18 18 set $x_frame_options ""; 19 19 } 20 add_header X-Frame-Options $x_frame_options ;20 add_header X-Frame-Options $x_frame_options always; 21 21 22 add_header Content-Security-Policy "frame-ancestors 'self'" ;22 add_header Content-Security-Policy "frame-ancestors 'self'" always; 23 23 }}} 24 25 Edit: Added `always` parameter to example Nginx code block.