mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
[enh] add the noalyss conf file
This commit is contained in:
parent
4d6e9b0838
commit
9a99f13857
1 changed files with 36 additions and 0 deletions
36
conf/noalyss.conf
Normal file
36
conf/noalyss.conf
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
<?php
|
||||||
|
date_default_timezone_set ('Europe/Brussels');
|
||||||
|
$_ENV['TMP']='/tmp';
|
||||||
|
define("PG_PATH","/usr/bin");
|
||||||
|
define("PG_RESTORE","/usr/bin/pg_restore ");
|
||||||
|
define("PG_DUMP","/usr/bin/pg_dump ");
|
||||||
|
define ("PSQL","/usr/bin/psql");
|
||||||
|
define ("noalyss_user","www-data");
|
||||||
|
define ("noalyss_password","dany");
|
||||||
|
define ("noalyss_psql_port","5432");
|
||||||
|
define ("noalyss_psql_host","127.0.0.1");
|
||||||
|
define ("LOCALE",1);
|
||||||
|
define ("domaine","");
|
||||||
|
define ("MULTI",1);
|
||||||
|
define ("dbname","");
|
||||||
|
// Uncomment to DEBUG
|
||||||
|
// define ("DEBUG",TRUE);
|
||||||
|
// Uncomment to log your input
|
||||||
|
// define ("LOGINPUT",TRUE);
|
||||||
|
|
||||||
|
|
||||||
|
// Do not change below !!!
|
||||||
|
// These variable are computed but could be changed in
|
||||||
|
// very special configuration
|
||||||
|
// define ("NOALYSS_HOME","");
|
||||||
|
// define ("NOALYSS_PLUGIN","");
|
||||||
|
// define ("NOALYSS_INCLUDE","");
|
||||||
|
// define ("NOALYSS_TEMPLATE","");
|
||||||
|
|
||||||
|
|
||||||
|
// Uncomment if you don't want
|
||||||
|
// to be informed when a new release is
|
||||||
|
// published
|
||||||
|
// define ("SITE_UPDATE","");
|
||||||
|
// define ("SITE_UPDATE_PLUGIN","");
|
||||||
|
?>
|
Loading…
Reference in a new issue