From bf8217a636fd589de6bac6682d322382a5b1d90a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1n=20Mikl=C3=B3s?= Date: Tue, 11 Feb 2020 19:44:03 +0100 Subject: [PATCH 1/3] Create server_config.srt --- official_docs/en/server_config.srt | 54 ++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 official_docs/en/server_config.srt diff --git a/official_docs/en/server_config.srt b/official_docs/en/server_config.srt new file mode 100644 index 0000000..953c2d9 --- /dev/null +++ b/official_docs/en/server_config.srt @@ -0,0 +1,54 @@ +The system settings for OpenBioMaps are located in + +/etc/openbiomaps/system_vars.php.inc + + +define("OB_DOMAIN",".../biomaps"); + +define("OB_SYSDIR","/mnt/data/"); + +define("OB_TMP","/mnt/data/tmp/"); + +define("OB_ROOT","/var/www/html/biomaps/"); + +define("OB_ROOT_SITE","/var/www/html/biomaps/root-site/"); + +define("POSTGRES_PORT","5432"); + +define("GISDB_HOST",'localhost'); // for creating new project + +define("MAPSERVER_HOST",'localhost'); // for creating new project + +define("OB_RESOURCES","/var/www/html/biomaps/resources/"); + +define('biomapsdb_user','...'); + +define('biomapsdb_pass','...'); + +define('biomapsdb_name','...'); + +define('biomapsdb_host','localhost'); + +# Postgis version - not necessary to set, it only has historical value +define('POSTGIS_V','2.1'); + +# default sendmail opetion, can be override in project level in local_vars.php.inc +define('SENDMAIL','smtp'); # sendmail | smtp + +# memcache tpye - choose this +define('CACHE','memcache'); + +# R-Shiny Server ports, for the projects where R shiny server should be enabled +define('RSERVER_PORT_someproject',7982); + +# Supported languages + +define('LANGUAGES','en,hu,ro'); + +# bug report system can be activated by put AUTO_BUGREPORT_ADDRESS constant + +define('AUTO_BUGREPORT_ADDRESS','incoming+openbiomaps...'); + +ask the issue-key from the gitlab-repo mainteners + + From 4d49d4a7117fcb56fea8bc915973ebbed34a277b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1n=20Mikl=C3=B3s?= Date: Tue, 11 Feb 2020 19:45:02 +0100 Subject: [PATCH 2/3] Update server_config.srt --- official_docs/en/server_config.srt | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/official_docs/en/server_config.srt b/official_docs/en/server_config.srt index 953c2d9..a31ab01 100644 --- a/official_docs/en/server_config.srt +++ b/official_docs/en/server_config.srt @@ -1,6 +1,9 @@ +Server configuration +******************** + The system settings for OpenBioMaps are located in -/etc/openbiomaps/system_vars.php.inc +`/etc/openbiomaps/system_vars.php.inc` define("OB_DOMAIN",".../biomaps"); From 28d1c53f06650d40551d8c838b6a126b92d72d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A1n=20Mikl=C3=B3s?= Date: Tue, 11 Feb 2020 19:45:34 +0100 Subject: [PATCH 3/3] Rename server_config.srt to server_config.rst --- official_docs/en/{server_config.srt => server_config.rst} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename official_docs/en/{server_config.srt => server_config.rst} (100%) diff --git a/official_docs/en/server_config.srt b/official_docs/en/server_config.rst similarity index 100% rename from official_docs/en/server_config.srt rename to official_docs/en/server_config.rst