Skip to content

Commit

Permalink
Create server_config.srt
Browse files Browse the repository at this point in the history
  • Loading branch information
miklosban committed Feb 11, 2020
1 parent ef6257f commit bf8217a
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions 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


0 comments on commit bf8217a

Please sign in to comment.