ssh geonat@db-<region>-sinp
cd /home/geonat
mkdir ~/www
cd www
git clone https://github.com/PnX-SI/GeoNature.git geonature
cd ~/; ln -s www/geonature geonature
cd ~/geonature
git checkout <tag>
. Par exemple : git checkout 2.13.3
git switch <branche>
. Par exemple : git switch feat/sinp
ssh geonat@db-<region>-sinp
cd /home/geonat
mkdir dwl; mkdir www
cd dwl
export GNV=$(curl -s https://api.github.com/repos/PnX-SI/GeoNature/releases/latest | grep tag_name | cut -d\" -f4)
wget https://github.com/PnX-SI/GeoNature/archive/${GNV}.zip -O geonature_v${GNV}.zip
unzip geonature_v${GNV}.zip -d ~/www/
cd www
mv GeoNature-${GNV} geonature_v${GNV}
ln -s geonature_v${GNV} geonature
cd ~/; ln -s www/geonature geonature
cd /home/geonat/www/geonature
cp config/settings.ini.sample config/settings.ini
vi config/settings.ini
my_local=fr_FR.UTF-8 # Mettre "https://..." une fois SSL activé sur le site my_url=http://expert.silene.eu/ drop_apps_db=false db_host=10.0.1.20 db_port=5432 db_name=geonature2db user_pg=geonatadmin user_pg_pass=<mot-de-passe> srid_local=2154 default_language=fr install_sig_layers=true install_grid_layer=true install_default_dem=true vectorise_dem=false add_sample_data=false install_module_validation=false install_module_occhab=false install_usershub_schema=true usershub_release=2.1.3 taxhub_release=1.7.3 habref_api_release=0.1.5 nomenclature_release=1.3.6 proxy_http= proxy_https= python_path=/usr/bin/python3 app_name=geonature2 venv_dir=venv # Workers number = 1 + (2 * CPU) gun_num_workers=5 gun_host=127.0.0.1 gun_port=8000 gun_timeout=300
Pour synchroniser le dossier d'installation de GeoNature entre les 2 instances, nous utiliserons rsync :
rsync -av -e "ssh -p <port-ssh-db>" /home/geonat/www/ geonat@db-<region>-sinp:/home/geonat/www/