]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - doc/md/Shaarli-configuration.md
**General rewording, proof-reading, deduplication, shortening, reordering, simplifica...
[github/shaarli/Shaarli.git] / doc / md / Shaarli-configuration.md
CommitLineData
91a21c27 1# Shaarli configuration
992af0b9 2
fdf88d19 3Once your Shaarli instance is installed, the file `data/config.json.php` is generated:
fdf88d19 4
91a21c27 5- it contains all settings in JSON format, and can be edited to customize values
6- it defines which [plugins](Plugins.md) are enabled
7- its values override those defined in `index.php`
8- it is wrapped in a PHP comment so that its contents are never served by the web server, regardless of configuration
1a47014f 9
91a21c27 10**Do not edit configuration options in index.php! Your changes would be lost.**
fdf88d19 11
91a21c27 12## Tools menu
fdf88d19 13
91a21c27 14Some settings can be configured directly from a web browser by accesing the `Tools` menu. Values are read/written to/from the configuration file.
fdf88d19 15
91a21c27 16![](https://i.imgur.com/boaaibC.png)
fdf88d19 17
cc2ded54
SN
18### LDAP
19
20- **host**: LDAP host used for user authentication
21- **dn**: user DN template (`sprintf` format, `%s` being replaced by user login)
22
fdf88d19
A
23## Configuration file example
24
25```json
26<?php /*
27{
28 "credentials": {
29 "login": "<login>",
30 "hash": "<password hash>",
31 "salt": "<password salt>"
32 },
33 "security": {
34 "ban_after": 4,
35 "session_protection_disabled": false,
36 "ban_duration": 1800,
53ed6d7d 37 "trusted_proxies": [
fdf88d19
A
38 "1.2.3.4",
39 "5.6.7.8"
53ed6d7d 40 ],
41 "allowed_protocols": [
42 "ftp",
43 "ftps",
44 "magnet"
fdf88d19
A
45 ]
46 },
47 "resources": {
48 "data_dir": "data",
49 "config": "data\/config.php",
50 "datastore": "data\/datastore.php",
51 "ban_file": "data\/ipbans.php",
52 "updates": "data\/updates.txt",
53 "log": "data\/log.txt",
54 "update_check": "data\/lastupdatecheck.txt",
55 "raintpl_tmp": "tmp\/",
56 "raintpl_tpl": "tpl\/",
57 "thumbnails_cache": "cache",
58 "page_cache": "pagecache"
59 },
60 "general": {
61 "check_updates": true,
62 "rss_permalinks": true,
63 "links_per_page": 20,
64 "default_private_links": true,
65 "enable_thumbnails": true,
66 "enable_localcache": true,
67 "check_updates_branch": "stable",
68 "check_updates_interval": 86400,
53ed6d7d 69 "enabled_plugins": [
fdf88d19
A
70 "markdown",
71 "wallabag",
72 "archiveorg"
73 ],
74 "timezone": "Europe\/Paris",
75 "title": "My Shaarli",
76 "header_link": "?"
77 },
78 "extras": {
79 "show_atom": false,
80 "hide_public_links": false,
81 "hide_timestamps": false,
82 "open_shaarli": false,
fdf88d19
A
83 },
84 "general": {
85 "header_link": "?",
86 "links_per_page": 20,
53ed6d7d 87 "enabled_plugins": [
fdf88d19
A
88 "markdown",
89 "wallabag"
90 ],
91 "timezone": "Europe\/Paris",
92 "title": "My Shaarli"
93 },
94 "updates": {
95 "check_updates": true,
96 "check_updates_branch": "stable",
97 "check_updates_interval": 86400
98 },
99 "feed": {
100 "rss_permalinks": true,
101 "show_atom": false
102 },
103 "privacy": {
104 "default_private_links": true,
105 "hide_public_links": false,
27e21231 106 "force_login": false,
2e07e775
WE
107 "hide_timestamps": false,
108 "remember_user_default": true
fdf88d19
A
109 },
110 "thumbnail": {
111 "enable_thumbnails": true,
112 "enable_localcache": true
113 },
fdf88d19
A
114 "plugins": {
115 "WALLABAG_URL": "http://demo.wallabag.org",
116 "WALLABAG_VERSION": "1"
1a47014f
A
117 },
118 "translation": {
119 "language": "fr",
120 "mode": "php",
121 "extensions": {
122 "demo": "plugins/demo_plugin/languages/"
123 }
cc2ded54
SN
124 },
125 "ldap": {
126 "host": "ldap://localhost",
127 "dn": "uid=%s,ou=people,dc=example,dc=org"
fdf88d19
A
128 }
129} ?>
992af0b9 130```
5409ade2 131
91a21c27 132## Settings
133
134### Credentials
135
136_These settings should not be edited_
137
138- **login**: Login username.
139- **hash**: Generated password hash.
140- **salt**: Password salt.
141
142### General
143
144- **title**: Shaarli's instance title.
145- **header_link**: Link to the homepage.
146- **links_per_page**: Number of Shaares displayed per page.
147- **timezone**: See [the list of supported timezones](http://php.net/manual/en/timezones.php).
148- **enabled_plugins**: List of enabled plugins.
149- **default_note_title**: Default title of a new note.
150- **retrieve_description** (boolean): If set to true, for every new Shaare Shaarli will try to retrieve the description and keywords from the HTML meta tags.
151
152### Security
153
154- **session_protection_disabled**: Disable session cookie hijacking protection (not recommended).
155 It might be useful if your IP adress often changes.
156- **ban_after**: Failed login attempts before being IP banned.
157- **ban_duration**: IP ban duration in seconds.
158- **open_shaarli**: Anyone can add a new Shaare while logged out if enabled.
159- **trusted_proxies**: List of trusted IP which won't be banned after failed login attemps. Useful if Shaarli is behind a reverse proxy.
160- **allowed_protocols**: List of allowed protocols in shaare URLs or markdown-rendered descriptions. Useful if you want to store `javascript:` links (bookmarklets) in Shaarli (default: `["ftp", "ftps", "magnet"]`).
161
162### Resources
163
164- **data_dir**: Data directory.
165- **datastore**: Shaarli's Shaares database file path.
166- **history**: Shaarli's operation history file path.
167- **updates**: File path for the ran updates file.
168- **log**: Log file path.
169- **update_check**: Last update check file path.
170- **raintpl_tpl**: Templates directory.
171- **raintpl_tmp**: Template engine cache directory.
172- **thumbnails_cache**: Thumbnails cache directory.
173- **page_cache**: Shaarli's internal cache directory.
174- **ban_file**: Banned IP file path.
175
176### Translation
177
178- **language**: translation language (also see [Translations](Translations))
179 - **auto** (default): The translation language is chosen from the browser locale.
180 It means that the language can be different for 2 different visitors depending on their locale.
181 - **en**: Use the English translation.
182 - **fr**: Use the French translation.
183- **mode**:
184 - **auto** or **php** (default): Use the PHP implementation of gettext (slower)
185 - **gettext**: Use PHP builtin gettext extension
186 (faster, but requires `php-gettext` to be installed and to reload the web server on update)
187- **extension**: Translation extensions for custom themes or plugins.
188Must be an associative array: `translation domain => translation path`.
189
190### Updates
191
192- **check_updates**: Enable or disable update check to the git repository.
193- **check_updates_branch**: Git branch used to check updates (e.g. `stable` or `master`).
194- **check_updates_interval**: Look for new version every N seconds (default: every day).
195
196### Privacy
197
198- **default_private_links**: Check the private checkbox by default for every new Shaare.
199- **hide_public_links**: All Shaares are hidden while logged out.
200- **force_login**: if **hide_public_links** and this are set to `true`, all anonymous users are redirected to the login page.
201- **hide_timestamps**: Timestamps are hidden.
202- **remember_user_default**: Default state of the login page's *remember me* checkbox
203 - `true`: checked by default, `false`: unchecked by default
204
205### Feed
206
207- **rss_permalinks**: Enable this to redirect RSS links to Shaarli's permalinks instead of shaared URL.
208- **show_atom**: Display ATOM feed button.
209
210### Thumbnail
211
212- **enable_thumbnails**: Enable or disable thumbnail display.
213- **enable_localcache**: Enable or disable local cache.
5409ade2 214
91a21c27 215## Plugins configuration
fdf88d19 216
91a21c27 217See [Plugins](Plugins.md)