diff options
Diffstat (limited to 'network/owncloud-server/README')
-rw-r--r-- | network/owncloud-server/README | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/network/owncloud-server/README b/network/owncloud-server/README index 014e51aefba78..3e3e9ce0d651d 100644 --- a/network/owncloud-server/README +++ b/network/owncloud-server/README @@ -34,7 +34,23 @@ Configuration "LoadModule rewrite_module ..." and "Include /etc/httpd/mod_php.conf", then restart httpd. -(3) After installation, **and after every upgrade**, you need to complete +(3) After installation, you must set up the names that clients will use to +access the server as "trusted domains". + +You must also do this if you are upgrading an older owncloud installation. + +To do this, you will need to edit /srv/httpd/htdocs/owncloud/config/config.php +as follows (please use your own server name instead of myserver.local or +owncloud.example.com): + + 'trusted_domains' => + array ( + 0 => 'localhost', + 1 => 'myserver.local', + 2 => 'owncloud.example.com', + ), + +(4) After installation, **and after every upgrade**, you need to complete setup by visiting this page: http://localhost/owncloud/ |