X-Git-Url: https://git.ao2.it/drupal-init-tools.git/blobdiff_plain/12f18b8456f9e90c565e7da6f1de0a81fb3493da..3fb41b675be9536cf1c3f18ca847edf1c96ca242:/drin.rst?ds=inline
diff --git a/drin.rst b/drin.rst
index 59101f1..b2effe9 100644
--- a/drin.rst
+++ b/drin.rst
@@ -86,8 +86,8 @@ Clean and rebuild the whole project to verify that installing from scratch works
drin clean
drin bootstrap
-NOTES
-=====
+NOTES ON DATABASE SETUP
+=======================
The `bootstrap` command in `drupal-init-tools` uses `drush` for the site
installation, and `drush` requires MySQL super-user access to create new MySQL
@@ -99,7 +99,7 @@ making it unusable by `drush`. In these cases it's recommended to create e new
MySQL super-user.
For password-less access create a MySQL admin user correspondent to the system
-user which will excute `drush` (e.g. the current user):
+user which will execute `drush` (e.g. the current user):
::
@@ -122,6 +122,64 @@ The settings in the `bootstrap.conf` file have to be adjusted according to how
super-user access has been configured.
+NOTES ON WEB SERVER SETUP
+=========================
+
+The `bootstrap` command in `drupal-init-tools` supports installing new sites
+in *user dirs*; this means that users can have the Drupal sites in their home
+directories, usually under the `public_html/` sub-directory.
+
+This may make development more comfortable, as new work can be done in the
+usual development environment (git and ssh configuration, editor settings,
+etc.).
+
+To configure the Apache web server to enable *user dirs*, first enable the
+module:
+
+::
+
+ sudo a2enmod userdir
+
+And then make sure that the configuration is compatible with Drupal, changes
+like the following may be necessary, depending on the distribution:
+
+::
+
+ diff --git a/apache2/mods-available/php7.2.conf b/apache2/mods-available/php7.2.conf
+ index d4df3e5..0758ea6 100644
+ --- a/apache2/mods-available/php7.2.conf
+ +++ b/apache2/mods-available/php7.2.conf
+ @@ -18,8 +18,8 @@
+ # To re-enable PHP in user directories comment the following lines
+ # (from to .) Do NOT set it to On as it
+ # prevents .htaccess files from disabling it.
+ -
+ -
+ - php_admin_flag engine Off
+ -
+ -
+ +#
+ +#
+ +# php_admin_flag engine Off
+ +#
+ +#
+ diff --git a/apache2/mods-available/userdir.conf b/apache2/mods-available/userdir.conf
+ index 2c334ec..737abdf 100644
+ --- a/apache2/mods-available/userdir.conf
+ +++ b/apache2/mods-available/userdir.conf
+ @@ -3,7 +3,7 @@
+ UserDir disabled root
+
+
+ - AllowOverride FileInfo AuthConfig Limit Indexes
+ + AllowOverride FileInfo AuthConfig Limit Indexes Options
+ Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
+ Require method GET POST OPTIONS
+
+
+These changes are typically only applied once, after the first installation of
+the web server.
+
SEE ALSO
========