From 225119cd3c5f2d08f6478de09854d8ec4d063509 Mon Sep 17 00:00:00 2001 From: dttpy Date: Wed, 22 Apr 2015 15:19:42 +0200 Subject: [PATCH 1/2] change server path --- admin_manual/installation/source_installation.rst | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index 1212b652b..3f7c54f98 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -155,9 +155,10 @@ Now download the archive of the latest ownCloud version: where ``/path/to/webserver/document-root`` is replaced by the document root of your Web server. On Ubuntu systems this - ``/var/www/owncloud``, so your copying command is:: + ``/var/www/html/owncloud``, so your copying command is:: - cp -r owncloud /var/www/ + mkdir /var/www/html + cp -r owncloud /var/www/html Apache Web Server Configuration ------------------------------- @@ -167,8 +168,8 @@ On Debian, Ubuntu, and their derivatives, Apache installs with a useful configur .. code-block:: xml - Alias /owncloud /var/www/owncloud - + Alias /owncloud /var/www/html/owncloud + AllowOverride All @@ -291,4 +292,4 @@ See :doc:`yaws_configuration` **Hiawatha Configuration** -See :doc:`hiawatha_configuration` \ No newline at end of file +See :doc:`hiawatha_configuration` From 75c9519d79031097a612b4f9667ab43d948ce904 Mon Sep 17 00:00:00 2001 From: dttpy Date: Thu, 23 Apr 2015 20:15:44 +0200 Subject: [PATCH 2/2] remove unneeded mkdir --- admin_manual/installation/source_installation.rst | 1 - 1 file changed, 1 deletion(-) diff --git a/admin_manual/installation/source_installation.rst b/admin_manual/installation/source_installation.rst index 3f7c54f98..2434fc294 100644 --- a/admin_manual/installation/source_installation.rst +++ b/admin_manual/installation/source_installation.rst @@ -157,7 +157,6 @@ Now download the archive of the latest ownCloud version: document root of your Web server. On Ubuntu systems this ``/var/www/html/owncloud``, so your copying command is:: - mkdir /var/www/html cp -r owncloud /var/www/html Apache Web Server Configuration