-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.inc.php.template
32 lines (23 loc) · 1.03 KB
/
config.inc.php.template
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
<?php
// Header style
define("HEADER_H1", "<b>Etherpad</b> Manager");
define("HEADER_LOGO_URL", "/css/sample_logo.png");
define("HEADER_ACCENT_COLOR", "#AAFFEE");
define("HEADER_TITLE", "Etherpad Manager");
// URL
define("HOST_NAME", "www.example.com");
define("PAD_URL", "https://www.example.com/etherpad/p/");
define("SELF_URL", "/pad/"); // only the path, NO hostname
// insert here the contents of APIKEY.txt from your etherpad-lite directory
define("API_KEY", '');
// insert here the url to the etherpad-lite api endpoint
define("API_URL", 'http://127.0.0.1:9001/api');
define("ADD_GROUP_LINK", "mailto:[email protected]?subject=Etherpad%20-%20Bitte%20Neue%20Gruppe%20Anlegen");
// set to non-empty to require a password for pad deletion
define("DELETE_PASSWORD", "");
define("ALLOW_ANON_PAD_CREATE", false);
define("ALLOW_SEARCH", true);
define("SHORTLNK_PREFIX", "http://pad.example.org/pp/");
define("DATABASE_URI", "mysql:host=localhost;dbname=etherpad;charset=utf8");
define("DATABASE_USER", "root");
define("DATABASE_PASSWORD", "");