This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository echobase. See https://gitlab.nuiton.org/codelutin/echobase.git commit bc3b968e8c680afea61b42a4b2036fb03ef5a3ef Author: jcouteau <couteau@codelutin.com> Date: Wed Mar 17 16:52:52 2021 +0100 Update install doc --- src/site/rst/install.rst.vm | 28 +++++++++++++++++++++++----- 1 file changed, 23 insertions(+), 5 deletions(-) diff --git a/src/site/rst/install.rst.vm b/src/site/rst/install.rst.vm index 428c559c..b93315c4 100644 --- a/src/site/rst/install.rst.vm +++ b/src/site/rst/install.rst.vm @@ -42,13 +42,31 @@ Installation de la base de données Il vous faudra peut-être installer un dépot apt pour postgres (voir https://wiki.postgresql.org/wiki/Apt). -L'application requière l'utilisation de postgresql 9.3 (et postgis 2.1). +L'application requière l'utilisation de postgresql 9.4 (et postgis 2.5). :: - apt-get install postgresql-9.3 - apt-get install postgresql-9.3-postgis-2.1 - apt-get install postgresql-9.3-postgis-2.1-scripts + apt-get install postgresql-9.4 + apt-get install postgresql-9.4-postgis-2.5 + apt-get install postgresql-9.4-postgis-2.5-scripts + +Ajouter ces Lignes dans le fichier de configuration /etc/postgresql/9.5/main/pg_hba.conf : +:: + +host all all 127.0.1.1/32 md5 +host all all 134.246.54.0/24 md5 +host all all 134.246.55.0/24 md5 +host all all 134.246.159.57/24 md5 +host all all 134.246.53.148/24 md5 +host all all 134.246.54.149/24 md5 +host all all 134.246.54.86/24 md5 +host all all 134.246.52.51/24 md5 + +Ajouter une ligne dans le fichier **/etc/postgresql/9.5/main/postgresql.conf** pour rendre accessible via le 5432: + +:: + +listen_addresses = '*' # what IP address(es) to listen on; Consulter la documentation suivante pour `créer une base travail`_. @@ -214,7 +232,7 @@ Configuration du serveur Apache Pour la suite de l'installation, exporter le nom de domaine de votre machine :: - export DOMAIN=acoustica + export DOMAIN=emhcalcul Executer ces commandes (ajout modules apache, création du site echobase) :: -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.