From d71a75b1ba8967230fc3f1ffd54da92749b60e90 Mon Sep 17 00:00:00 2001 From: BernieO Date: Sun, 22 Sep 2019 22:44:32 +0200 Subject: [PATCH] Adapt Updates to nginx configuration Signed-off-by: Bernhard Ostertag Nextcloud 17 adds the Same-Origin header which was removed with Nextcloud 12. ref #1597 (which should IMHO be merged before release of Nextcloud 17) --- admin_manual/release_notes.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/admin_manual/release_notes.rst b/admin_manual/release_notes.rst index 14fba2cd375..d1b9452b6eb 100644 --- a/admin_manual/release_notes.rst +++ b/admin_manual/release_notes.rst @@ -12,10 +12,8 @@ versions linked. Updates to Nginx configuration ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -* In the Nginx configuration the Same-Origin header was removed. This is now - handled in PHP and keeping it will result in a wrong header. Please remove - those lines in your Nginx config: - ``add_header X-Frame-Options "SAMEORIGIN";`` +* In the Nginx configuration the Same-Origin header was added. Please add + this line to your Nginx config: ``add_header X-Frame-Options "SAMEORIGIN" always;`` See :doc:`installation/nginx` * For improvements in serving HTTP requests the Nginx configuration now has HTTP 2 enabled. Please update your Nginx config accordingly. See