mirror of
https://github.com/nextcloud/documentation.git
synced 2025-08-20 14:15:54 +00:00
126 lines
3.9 KiB
ReStructuredText
126 lines
3.9 KiB
ReStructuredText
===============
|
|
Automatic setup
|
|
===============
|
|
|
|
If you need to install Nextcloud on multiple servers, you normally do not want
|
|
to set up each instance separately as described in
|
|
:doc:`../configuration_database/linux_database_configuration`.
|
|
For this reason, Nextcloud provides an automatic configuration feature.
|
|
|
|
To take advantage of this feature, you must create a configuration file, called
|
|
:file:`config/autoconfig.php`, and set the file parameters as required.
|
|
You can specify any number of parameters in this file. Any unspecified parameters appear on the "Finish setup" screen when you first launch Nextcloud.
|
|
|
|
The :file:`config/autoconfig.php` is automatically removed after the initial configuration has been applied.
|
|
|
|
.. note:: Keep in mind that the automatic configuration does not eliminate the need for
|
|
creating the database user and database in advance, as described in
|
|
:doc:`../configuration_database/linux_database_configuration`.
|
|
|
|
Parameters
|
|
----------
|
|
When configuring parameters, you must understand that two parameters are named differently in this configuration file when compared to the standard :file:`config.php` file.
|
|
|
|
+----------------+---------------+
|
|
| autoconfig.php | config.php |
|
|
+================+===============+
|
|
| directory | datadirectory |
|
|
+----------------+---------------+
|
|
| dbpass | dbpassword |
|
|
+----------------+---------------+
|
|
|
|
Automatic configurations examples
|
|
---------------------------------
|
|
|
|
The following sections provide sample automatic configuration examples and what information is requested at the end of the configuration.
|
|
|
|
Data Directory
|
|
^^^^^^^^^^^^^^
|
|
|
|
Using the following parameter settings, the "Finish setup" screen requests database and admin credentials settings.
|
|
|
|
::
|
|
|
|
<?php
|
|
$AUTOCONFIG = [
|
|
"directory" => "/www/htdocs/nextcloud/data",
|
|
];
|
|
|
|
|
|
SQLite database
|
|
^^^^^^^^^^^^^^^
|
|
|
|
Using the following parameter settings, the "Finish setup" screen requests data directory and admin credentials settings.
|
|
|
|
::
|
|
|
|
<?php
|
|
$AUTOCONFIG = [
|
|
"dbtype" => "sqlite",
|
|
"dbname" => "nextcloud",
|
|
"dbtableprefix" => "",
|
|
];
|
|
|
|
MySQL database
|
|
^^^^^^^^^^^^^^
|
|
|
|
Using the following parameter settings, the "Finish setup" screen requests data directory and admin credentials settings.
|
|
|
|
::
|
|
|
|
<?php
|
|
$AUTOCONFIG = array(
|
|
"dbtype" => "mysql",
|
|
"dbname" => "nextcloud",
|
|
"dbuser" => "username",
|
|
"dbpass" => "password",
|
|
"dbhost" => "localhost",
|
|
"dbtableprefix" => "",
|
|
);
|
|
|
|
PostgreSQL database
|
|
^^^^^^^^^^^^^^^^^^^
|
|
|
|
Using the following parameter settings, the "Finish setup" screen requests data directory and admin credentials settings.
|
|
|
|
::
|
|
|
|
<?php
|
|
$AUTOCONFIG = array(
|
|
"dbtype" => "pgsql",
|
|
"dbname" => "nextcloud",
|
|
"dbuser" => "username",
|
|
"dbpass" => "password",
|
|
"dbhost" => "localhost",
|
|
"dbtableprefix" => "",
|
|
);
|
|
|
|
.. note:: Keep in mind that the automatic configuration does not eliminate the need for
|
|
creating the database user and database in advance, as described in
|
|
:doc:`../configuration_database/linux_database_configuration`.
|
|
|
|
All parameters
|
|
^^^^^^^^^^^^^^
|
|
|
|
Using the following parameter settings, because all parameters are already configured in the file, the Nextcloud installation skips the "Finish setup" screen.
|
|
|
|
::
|
|
|
|
<?php
|
|
$AUTOCONFIG = array(
|
|
"dbtype" => "mysql",
|
|
"dbname" => "nextcloud",
|
|
"dbuser" => "username",
|
|
"dbpass" => "password",
|
|
"dbhost" => "localhost",
|
|
"dbtableprefix" => "",
|
|
"adminlogin" => "root",
|
|
"adminpass" => "root-password",
|
|
"directory" => "/www/htdocs/nextcloud/data",
|
|
);
|
|
|
|
.. note:: Keep in mind that the automatic configuration does not eliminate the need for
|
|
creating the database user and database in advance, as described in
|
|
:doc:`../configuration_database/linux_database_configuration`.
|
|
|