-
Notifications
You must be signed in to change notification settings - Fork 174
/
config.php.example
47 lines (34 loc) · 1.29 KB
/
config.php.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php
if (!defined('APP_STARTED')) {
die('Forbidden!');
}
// Example configuration file for Wikitten. To use it,
// first rename it to `config.php`.
// Custom name for your wiki:
define('APP_NAME', 'My Wiki');
// Set the filename of the automatic homepage here
define('DEFAULT_FILE', 'index.md');
// Custom path to your wiki's library:
// define('LIBRARY', '/path/to/wiki/library');
// Enable editing files through the interface?
// NOTE: There's currently no authentication built into Wikitten, controlling
// who does what is your responsibility.
// define('ENABLE_EDITING', true);
// Enable JSON page data?
// define('USE_PAGE_METADATA', true);
// Enable the dark theme here
// define('USE_DARK_THEME', true);
// Disable the Wikitten logo here
// define('USE_WIKITTEN_LOGO', false);
// Enable PasteBin plugin ?
// define('ENABLE_PASTEBIN', true);
// define('PASTEBIN_API_KEY', '');
// Enable password authentication (leave this field commented to disable password)
// define('ACCESS_USER', 'Wikitten');
// define('ACCESS_PASSWORD', 'Wikitten');
// Use this as default target for external urls
// define('EXTERNAL_LINK_TARGET', '_blank');
// Enable the internal wiki URL and URL fix
// define('INTERNAL_WIKI_LINK', true);
// Enable a custom stylesheet
// define('CUSTOM_MARKDOWN_STYLESHEET', '');