biommap/patches/settings.ini

49 lines
1.3 KiB
INI
Raw Normal View History

2021-03-26 08:11:10 +00:00
# Langue du serveur
# valeur possible : fr_FR.UTF-8, en_US.utf8
2021-03-26 08:11:10 +00:00
# locale -a pour voir la liste des locales disponible
my_local=fr_FR.UTF-8
# My host URL or IP with / at the end
my_url=http://localhost:8080/
url_application=http://localhost:8080/ # Url For the frontend
api_endpoint=http://localhost:8080/api # Url for the geonature api don't forget /api
2021-03-26 08:11:10 +00:00
api_port=5002
2021-05-31 13:42:58 +00:00
api_taxhub=http://localhost:8080/taxhub/api/ # Url for the taxhub api
2021-03-26 08:11:10 +00:00
install_taxhub=1
taxhub_version=1.7.3
# Configuration front
server_side=true # Server side rendering heavy recommanded
# BackOffice admin passsword
admin_password=MotDePasseAChanger
################################
### CONFIGURATION PostgreSQL ###
################################
# Localisation du server PostgreSQL.
2021-03-26 08:11:10 +00:00
# Les scripts d'installation automatique ne fonctionnent que si votre BDD est sur le même serveur (localhost)
2021-05-31 13:42:58 +00:00
pg_host=db
2021-03-26 08:11:10 +00:00
# Port sur lequel PostgreSQL ecoute
pg_port=5432
#Base de donnée Geonature
2021-05-31 13:42:58 +00:00
pg_dbname=postgres
2021-03-26 08:11:10 +00:00
# Nom de l'utilisateur propriétaire des bases UsersHub, GeoNature, TaxHub
2021-05-31 13:42:58 +00:00
user_pg=postgres
2021-03-26 08:11:10 +00:00
# Pass de l'utilisateur propriétaire des bases UsersHub, GeoNature, TaxHub
2021-05-31 13:42:58 +00:00
user_pg_pass=postgres
2021-03-26 08:11:10 +00:00
#########################
### Gunicorn settings ###
#########################
app_name=gncitizen
gun_num_workers=2
gun_host=0.0.0.0
2021-03-26 08:11:10 +00:00
gun_port=5002
gun_timeout=30