mirror of
https://github.com/nextcloud/documentation.git
synced 2026-01-04 02:36:49 +07:00
1. The wording here is really off. We don't really recommend this highly. 2. This is even contraproductive as it disallows updating via the app store 3. Once we have automatic updates this will effectively decrease security from my PoV Also, an attacker can execute code also using other ways once they have write access to Nextcloud or the data folder. Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
112 lines
4.3 KiB
ReStructuredText
112 lines
4.3 KiB
ReStructuredText
===================
|
|
Installation Wizard
|
|
===================
|
|
|
|
Quick Start
|
|
-----------
|
|
|
|
When Nextcloud prerequisites are fulfilled and all Nextcloud files are installed,
|
|
the last step to completing the installation is running the Installation
|
|
Wizard.
|
|
This is just three steps:
|
|
|
|
#. Point your Web browser to ``http://localhost/nextcloud``
|
|
#. Enter your desired administrator's username and password.
|
|
#. Click **Finish Setup**.
|
|
|
|
.. figure:: images/install-wizard-a.png
|
|
:scale: 75%
|
|
:alt: screenshot of the installation wizard
|
|
|
|
You're finished and can start using your new Nextcloud server.
|
|
|
|
Of course, there is much more that you can do to set up your Nextcloud server for
|
|
best performance and security. In the following sections we will cover important
|
|
installation and post-installation steps.
|
|
|
|
* :ref:`Data Directory Location <data_directory_location_label>`
|
|
* :ref:`Database Choice <database_choice_label>`
|
|
* :ref:`Trusted Domains <trusted_domains_label>`
|
|
|
|
.. _data_directory_location_label:
|
|
|
|
Data Directory Location
|
|
-----------------------
|
|
|
|
Click **Storage and Database** to expose additional installation configuration
|
|
options for your Nextcloud data directory and database.
|
|
|
|
.. figure:: images/install-wizard-a1.png
|
|
:scale: 75%
|
|
:alt: installation wizard with all options exposed
|
|
|
|
You should locate your Nextcloud data directory outside of your Web root if you
|
|
are using an HTTP server other than Apache, or you may wish to store your
|
|
Nextcloud data in a different location for other reasons (e.g. on a storage
|
|
server). It is best to configure your data directory location at installation,
|
|
as it is difficult to move after installation. You may put it anywhere; in this
|
|
example is it located in ``/var/oc_data``. This directory must already exist,
|
|
and must be owned by your HTTP user.
|
|
|
|
.. _database_choice_label:
|
|
|
|
Database Choice
|
|
---------------
|
|
|
|
SQLite is the default database for Nextcloud Server and it is good only for
|
|
testing and lightweight single-user setups without client synchronization.
|
|
Supported databases are MySQL, MariaDB, Oracle 11g, and PostgreSQL, and we
|
|
recommend :doc:`MySQL/MariaDB <system_requirements>`. Your database and PHP
|
|
connectors must be installed before you run the Installation Wizard. When
|
|
you install Nextcloud from packages all the necessary dependencies will be
|
|
satisfied (see :doc:`source_installation` for a detailed listing of required
|
|
and optional PHP modules). You will need the root database login, or any
|
|
administrator login that has permissions to create and modify databases, and
|
|
then enter any name you want for your Nextcloud database.
|
|
|
|
After you enter your root or administrator login for your database, the
|
|
installer creates a special database user with privileges limited to the
|
|
Nextcloud database. Then Nextcloud needs only the special Nextcloud database
|
|
user, and drops the root dB login. This user is named for your Nextcloud admin
|
|
user, with an ``oc_`` prefix, and then given a random password. The Nextcloud
|
|
database user and password are written into ``config.php``::
|
|
|
|
'dbuser' => 'oc_molly',
|
|
'dbpassword' => 'pX65Ty5DrHQkYPE5HRsDvyFHlZZHcm',
|
|
|
|
Click Finish Setup, and start using your new Nextcloud server.
|
|
|
|
.. figure:: images/install-wizard-a2.png
|
|
:scale: 75%
|
|
:alt: Nextcloud welcome screen after a successful installation
|
|
|
|
Now we will look at some important post-installation steps.
|
|
|
|
.. _trusted_domains_label:
|
|
|
|
Trusted Domains
|
|
---------------
|
|
|
|
All URLs used to access your Nextcloud server must be whitelisted in your
|
|
``config.php`` file, under the ``trusted_domains`` setting. Users
|
|
are allowed to log into Nextcloud only when they point their browsers to a
|
|
URL that is listed in the ``trusted_domains`` setting. You may use IP addresses
|
|
and domain names. A typical configuration looks like this::
|
|
|
|
'trusted_domains' =>
|
|
array (
|
|
0 => 'localhost',
|
|
1 => 'server1.example.com',
|
|
2 => '192.168.1.50',
|
|
),
|
|
|
|
The loopback address, ``127.0.0.1``, is automatically whitelisted, so as long
|
|
as you have access to the physical server you can always log in. In the event
|
|
that a load balancer is in place there will be no issues as long as it sends
|
|
the correct X-Forwarded-Host header. When a user tries a URL that
|
|
is not whitelisted the following error appears:
|
|
|
|
.. figure:: images/install-wizard-a4.png
|
|
:scale: 75%
|
|
:alt: Error message when URL is not whitelisted
|