Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo for EDXAPP_LMS_FRAME_ANCESTORS #436

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading