| 1 | <?php |
| 2 | |
| 3 | // locations |
| 4 | $globals->spoolroot = "/var/spool/diogenes" |
| 5 | $globals->rcsroot = "/var/lib/diogenes"; |
| 6 | $globals->root = "/var/www/diogenes"; |
| 7 | |
| 8 | /* Base url for the Diogenes system, including trailing slash. |
| 9 | * |
| 10 | * In order to make use of virtualhosts or WebDAV, please set |
| 11 | * this to a full URL starting with http:// or https:// for instance: |
| 12 | * |
| 13 | * $globals->rooturl = "http://www.foo.org/diogenes/"; |
| 14 | */ |
| 15 | $globals->rooturl = "http://diogenes.polytechnique.org/"; |
| 16 | |
| 17 | // database access |
| 18 | |
| 19 | // $globals->dbdb = "diogenes"; |
| 20 | // $globals->dbhost = "localhost"; |
| 21 | // $globals->dbuser = "diogenes"; |
| 22 | $globals->dbpwd = "changeme"; |
| 23 | |
| 24 | // Utility to use for Word file import. |
| 25 | // set 'wvHtml' to make us of wv for Word import. |
| 26 | // var $word_import = 'wvHtml'; |
| 27 | |
| 28 | ?> |