Newer
Older
backup-commander / install / conf-sample.php
  1. <?php
  2.  
  3. /*
  4. * This is the full path to the project directory, as cloned from the repository.
  5. */
  6. //$path_project = "/var/www/backup-commander";
  7.  
  8. /*
  9. * This is the full path to the web-server directory. This should be a symlink to
  10. * $path_project/html
  11. * Currently the install process will not copy over files since it assumes this link is in place.
  12. */
  13. //$path_website = "/var/www/html";
  14.  
  15. /*
  16. * The following array contains a list of variable names and values. Each one of these is added to
  17. * inc/paths.php
  18. *
  19. * Work through each one and ammend them for your system.
  20. */
  21. $runtime_paths = array(
  22. ['g_database_path', 'data/data.db'], // the database path relative to the DocumentRoot
  23. ['g_phpcli_path', '/usr/bin/php'] // the commandline php interpreter, used for running the backup process on a separate thread.
  24. // the g_phpcli_path value will need root access to correctly run rsync
  25. );
  26.  
  27.  
  28. ?>