From c2ae312799f9445b9760eac05d7eba4f45dfcd32 Mon Sep 17 00:00:00 2001 From: Matthew Setter Date: Thu, 15 Mar 2018 14:15:09 +0100 Subject: [PATCH] Document the mod_headers is mandatory for OAuth2 support This relates to https://github.com/owncloud/oauth2/issues/110 and #3464. --- admin_manual/configuration/server/security/oauth2.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/admin_manual/configuration/server/security/oauth2.rst b/admin_manual/configuration/server/security/oauth2.rst index 83df9cfb0..ff68e0456 100644 --- a/admin_manual/configuration/server/security/oauth2.rst +++ b/admin_manual/configuration/server/security/oauth2.rst @@ -141,6 +141,11 @@ Installation To install the application, place the content of the OAuth2 app inside your installation's ``app`` directory. +Requirements +------------ + +If you are hosting your ownCloud installation from the Apache web server, then both the `mod_rewrite`_ and `mod_headers`_ modules are required to be installed and enabled. + Basic Configuration ------------------- @@ -171,4 +176,6 @@ Revoking Sessions .. _the official access token response RFC from the IETF: https://tools.ietf.org/html/rfc6749#section-4.1.4 .. _RFC 6749: https://tools.ietf.org/html/rfc6749#section-4.1.1 .. _Client authentication: https://tools.ietf.org/html/rfc6749#section-2.3 +.. _mod_rewrite: http://httpd.apache.org/docs/current/mod/mod_rewrite.html +.. _mod_headers: http://httpd.apache.org/docs/current/mod/mod_headers.html