Skip to content

Commit

Permalink
Fix typo for EDXAPP_LMS_FRAME_ANCESTORS
Browse files Browse the repository at this point in the history
  • Loading branch information
Vladyslav Tymofeiev committed Aug 13, 2024
1 parent 6a43843 commit c86c280
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Add any new changes to the top(right below this line).

- Role: nginx
- Add the possibility to add the header `Content-Security-Policy frame-ancestors`. This is configured by the
EDXAPP_LMS_IFRAME_ENABLED switcher and EDXAPP_LMS_FRAME-ANCESTORS value.
EDXAPP_LMS_IFRAME_ENABLED switcher and EDXAPP_LMS_FRAME_ANCESTORS value.

- Role: edxapp BREAKING_CHANGE
- The sandbox environment that runs instructor written python code used to run python 2.7. We update the default to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ error_page {{ k }} {{ v }};

{% if EDXAPP_LMS_IFRAME_ENABLED %}
# Allow iFrame for the provided hosts
add_header Content-Security-Policy "frame-ancestors 'self' {{ EDXAPP_LMS_FRAME-ANCESTORS }}";
add_header Content-Security-Policy "frame-ancestors 'self' {{ EDXAPP_LMS_FRAME_ANCESTORS }}";
{% endif %}

# Prevent invalid display courseware in IE 10+ with high privacy settings
Expand Down

0 comments on commit c86c280

Please sign in to comment.