]> git.p6c8.net - jirafeau.git/blob - README.md
Store filesize before encrypting the file
[jirafeau.git] / README.md
1 # Jirafeau
2
3 ![Made With](https://img.shields.io/badge/made_with-php-blue.svg)
4 ![License](https://img.shields.io/badge/license-agpl--3.0-blue.svg)
5
6 Welcome to the official Jirafeau project, an [Open-Source software](https://en.wikipedia.org/wiki/Open-source_software).
7
8 Jirafeau is a "one-click-filesharing": Select your file, upload, share a link. That's it.
9
10 See [jirafeau.net](https://jirafeau.net/) for a demo.
11
12 ![Screenshot1](screenshots/upload1.png)
13
14 ## DISCLAMER
15
16 This project is a fork of the [discontinued project](https://gitlab.com/mojo42/Jirafeau/) by [Jérôme Jutteau](https://gitlab.com/mojo42/).
17
18 If you've also forked the original project, feel free to mention it in [comments](https://gitlab.com/mojo42/Jirafeau/-/issues/360). Jérôme will add it there.
19
20 In this repository we are aiming to continue development of the original Jirafeau project. Feel free to contribute to this fork by participating in discussions and providing merge requests, so we can build the best version of Jirafeau together!
21
22 ## Main features
23
24 - One upload → one download link and one delete link
25 - Send any large files (thanks to the HTML5 file API → PHP `post_max_size` limit not relevant)
26 - Shows upload progress: speed, percentage and remaining upload time
27 - Preview content in browser (if possible)
28 - Optional password protection (for uploading or downloading)
29 - Option to require, check or generate file download passwords
30 - Set expiration time for downloads
31 - Option to self-destruct after first download
32 - Shortened URLs using Base64 encoding
33 - Maximal upload size configurable
34 - No database, only use basic PHP
35 - Simple language support with a lot of languages
36 - File level [deduplication](http://en.wikipedia.org/wiki/Data_deduplication) for storage optimization (does store duplicate files only once, but generate multiple links)
37 - Optional data encryption
38 - Small administration interface
39 - CLI script to remove expired files automatically with a cronjob
40 - Basic, adaptable "Terms Of Service" page
41 - Basic API
42 - Bash script to upload files via command line
43 - Themes
44
45 Jirafeau is a fork of the original project [Jyraphe](https://web.archive.org/web/20170506133242/home.gna.org/jyraphe) based on the 0.5 (stable version) with a **lot** of modifications.
46
47 As it's original project, Jirafeau is made in the [KISS](http://en.wikipedia.org/wiki/KISS_principle) way (Keep It Simple, Stupid).
48
49 Jirafeau project won't evolve to a file manager and will focus to keep a very few dependencies.
50
51 ## Screenshots
52
53 - [Installation - Step 1](screenshots/install1.png)
54 - [Installation - Step 2](screenshots/install2.png)
55 - [Installation - Step 3](screenshots/install3.png)
56 - [Upload - Step 1](screenshots/upload1.png)
57 - [Upload - Step 2](screenshots/upload2.png)
58 - [Upload - Progress](screenshots/upload_progress.png)
59 - [Upload - Confirmation page](screenshots/upload_confirm.png)
60 - [Admin Interface](screenshots/admin.png)
61
62 ## Installation
63
64 This shows how to install Jirafeau by your own, it's quite simple but you can
65 also use a [docker image](https://gitlab.com/jirafeau/Jirafeau/container_registry/) or build
66 it yourself. Check [docker folder](docker/README.md) for more information.
67
68 System requirements:
69 - PHP >= 7.4
70 - Optional, but recommended: Git >= 2.7
71 - No database required, no mail required
72
73 Installation steps:
74 - Clone the [repository](https://gitlab.com/jirafeau/Jirafeau/) or download the latest [release](https://gitlab.com/jirafeau/Jirafeau/tags) from GitLab onto your webserver
75 - Set owner & group according to your webserver
76 - A) Setup with the installation wizard (web):
77 - Open your browser and go to your installed location, eg. `https://example.com/jirafeau/`
78 - The script will redirect to you to a minimal installation wizard to set up all required options
79 - All optional parameters may be set in `lib/config.local.php`, take a look at `lib/config.original.php` to see all default values
80 - B) Setup without the installation wizard (cli):
81 - Just copy `lib/config.original.php` to `lib/config.local.php` and customize it
82
83 💡 Hint: How to
84 [install & configure Jirafeau](https://www.howtoforge.com/how-to-setup-a-file-sharing-website-with-jirafeau-on-debian-10/)
85 on Debian 10 from scratch, with nginx and PHP-FPM.
86
87 ### Troubleshooting
88
89 If you have some troubles, consider the following cases
90
91 - Check your `/lib/config.local.php` file and compare it with `/lib/config.original.php`, the configuration syntax or a parameter may have changed
92 - Check owner and permissions of your files
93 - Set `debug` option to `true` to check any warning or error
94
95 ## Security
96
97 `var` directory contains all files and links. It is randomly named to limit access but you may add better protection to prevent un-authorized access to it.
98 You have several options:
99
100 - Configure a `.htaccess`
101 - Move var folder to a place on your server which can't be directly accessed
102 - Disable automatic listing on your web server config or place a index.html in var's sub-directory (this is a limited solution)
103
104 If you are using Apache, you can add the following lines to your configuration to prevent people to access to your `var` folder:
105
106 ```apache
107 <LocationMatch "^/var-*">
108 Require all denied
109 </LocationMatch>
110 ```
111
112 Or you can put a `.htaccess` file containing this into your `var` folder:
113
114 ```apache
115 Require all denied
116 ```
117
118 If you are using nginx, you can add the following to your $vhost.conf:
119
120 ```nginx
121 location ~ /var-.* {
122 deny all;
123 return 404;
124 }
125 ```
126
127 If you are using lighttpd, you can deny access to `var` folder in your configuration:
128
129 ```
130 $HTTP["url"] =~ "^/var-*" {
131 url.access-deny = ("")
132 }
133 ```
134
135 You should also remove un-necessessary write access once the installation is done (ex: configuration file).
136 An other obvious basic security is to let access users to the site by HTTPS (make sure `web_root` in you `config.local.php` is set with https).
137
138 ## Server side encryption
139
140 Data encryption can be activated in options. This feature makes the server encrypt data and send the decrypt key to the user (inside download URL).
141 The decrypt key is not stored on the server so if you lose the download URL, you won't be able to retrieve file content.
142 Encryption is configured to use [XChaCha20-Poly1305](https://en.wikipedia.org/wiki/ChaCha20-Poly1305).
143 In case of security troubles on the server, attacker won't be able to access files.
144
145 By activating this feature, you have to be aware of few things:
146 - Data encryption has a cost (CPU) and it takes more time for downloads to complete once file sent.
147 - During the download, the server will decrypt on the fly (and use resource).
148 - This feature needs to have the [`Sodium`](https://www.php.net/manual/en/book.sodium.php) PHP module.
149 - File de-duplication will stop to work (as we can't compare two encrypted files).
150 - Be sure your server does not log client's requests.
151 - Don't forget to enable HTTPS.
152
153 In a next step, encryption will be made by the client (in JavaScript).
154
155 ## License
156
157 GNU Affero General Public License v3 (AGPL-3.0).
158
159 The GNU Affero General Public License can be found at https://www.gnu.org/licenses/agpl.html.
160
161 Please note: If you decide do make adaptions to the source code and run a service with these changes incorporated,
162 you are required to provide a link to the source code of your version in order to obey the AGPL-3.0 license.
163 To do so please add a link to the source (eg. a public Git repository or a download link) to the Terms of Service page.
164 Take a look at the FAQ to find out about how to change the ToS.
165
166 PS: If you have fixed errors or added features, then please contribute to the project and send a merge request with these changes.
167
168 ## Contribution
169
170 If you want to contribute to project, then take a look at the git repository:
171
172 - https://gitlab.com/jirafeau/Jirafeau
173
174 and the Contribution Guidelines
175
176 - https://gitlab.com/jirafeau/Jirafeau/blob/master/CONTRIBUTING.md
177
178 ## FAQ
179
180 ### Can I add a new language in Jirafeau?
181
182 Of course! The best way is to create a new JSON file under `lib/locales` and open a merge request.
183
184 Thanks to all contributors ! :)
185
186 ### How do I upgrade my Jirafeau?
187
188 See change log and upgrade procedure in [CHANGELOG.md](https://gitlab.com/jirafeau/Jirafeau/blob/master/CHANGELOG.md).
189
190 ### How can I limit upload access?
191
192 There are two ways to limit upload access (but not download):
193 - you can set one or more passwords in order to access the upload interface, or/and
194 - you can configure a list of authorized IP ([CIDR notation](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing#CIDR_notation)) which are allowed to access to the upload page
195
196 Check documentation of `upload_password` and `upload_ip` parameters in [lib/config.original.php](https://gitlab.com/jirafeau/Jirafeau/blob/master/lib/config.original.php).
197
198 ### How can I automatize the cleaning of old (expired) files?
199
200 You can call the admin.php script from the command line (CLI) with the `clean_expired` or `clean_async` commands: `sudo -u www-data php admin.php clean_expired`.
201
202 Then the command can be placed in a cron file to automatize the process. For example:
203 ```
204 # m h dom mon dow user command
205 12 3 * * * www-data php /path/to/jirafeau/admin.php clean_expired
206 16 3 * * * www-data php /path/to/jirafeau/admin.php clean_async
207 ```
208
209 ### I have some troubles with IE
210
211 If you have some strange behavior with IE, you may configure [compatibility mode](http://feedback.dominknow.com/knowledgebase/articles/159097-internet-explorer-ie8-ie9-ie10-and-ie11-compat).
212
213 Anyway I would recommend you to use another web browser. :)
214
215 ### How can I change the theme?
216
217 You may change the default theme to any of the existing ones or a custom.
218
219 Open your `lib/config.local.php` and change setting in the `style` key to the name of any folder in the `/media` directory. If you want to change the theme for dark mode, you have to set the `dark_style` key in the config file.
220
221 Hint: To create a custom theme just copy the `courgette` folder and name your theme `custom` (this way it will be ignored by git and not overwritten during updates). If you want to create a custom theme for dark mode, you have to put it in a folder named `dark-custom`. You are invited to enhance the existing themes and send pull requests however.
222
223 ### I found a bug, what should I do?
224
225 Feel free to open a bug in the [GitLab's issues](https://gitlab.com/jirafeau/Jirafeau/issues).
226 If you can, please copy-paste information related to bug opening provided in admin interface.
227 Admin interface can be reached by accessing `/admin.php`.
228
229 ### How to set maximum file size?
230
231 If your browser supports the HTML5 file API, you can send files as big as you want.
232
233 For browsers not supporting the HTML5 file API, the limitation comes from PHP configuration.
234 You have to set [post_max_size](https://php.net/manual/en/ini.core.php#ini.post-max-size) and [upload_max_filesize](https://php.net/manual/en/ini.core.php#ini.upload-max-filesize) in your php configuration. Note that nginx setups may requiere to configure `client_max_body_size`.
235
236 If you don't want to allow unlimited upload size, you can still setup a maximal file size in Jirafeau's setting (see `maximal_upload_size` in your configuration)
237
238 ### How can I edit an option?
239
240 Documentation of all default options are located in [/lib/config.original.php](https://gitlab.com/jirafeau/Jirafeau/blob/master/lib/config.original.php).
241 If you want to change an option, just edit your `/lib/config.local.php`.
242
243 ### How can I change the Terms of Service?
244
245 The license text on the "Terms of Service" page, which is shipped with the default installation, is based on the "[Open Source Initiative Terms of Service](https://opensource.org/ToS)".
246
247 To change this text simply copy the file [/lib/tos.original.txt](https://gitlab.com/jirafeau/Jirafeau/blob/master/lib/tos.original.txt), rename it to `/lib/tos.local.txt` and adapt it to your own needs.
248
249 If you update the installation, then only the `tos.original.txt` file may change eventually, not your `tos.local.txt` file.
250
251 ### How can I access the admin interface?
252
253 Just go to `/admin.php`.
254
255 ### How can I use the scripting interface (API)?
256
257 Simply go to `/script.php` with your web browser.
258
259 ### My downloads are incomplete or my uploads fails
260
261 Be sure your PHP installation is not using safe mode, it may cause timeouts.
262
263 If you're using nginx, you might need to increase `client_max_body_size` or remove the restriction altogether. In your `nginx.conf`:
264
265 ```nginx
266 http {
267 # disable max upload size
268 client_max_body_size 0;
269 # add timeouts for very large uploads
270 client_header_timeout 30m;
271 client_body_timeout 30m;
272 }
273 ```
274
275 ### How can I monitor the use of my Jirafeau instance?
276
277 You may use Munin and simple scripts to collect the number of files in the Jirafeau instance as well as the disk space occupied by all the files. You can consult this [web page](https://blog.bandinelli.net/index.php?post/2016/05/15/Scripts-Munin-pour-Jirafeau).
278
279 ### Why forking?
280
281 In this repository we are aiming to continue development of the original Jirafeau project. We plan to add more features and increase security from a stable version.
282
283 ### What can we expect in the future?
284
285 Check [issues](https://gitlab.com/jirafeau/Jirafeau/issues) to check open bugs and incoming new stuff. :)
286
287 ### What about this file deduplication thing?
288
289 Jirafeau can use a very simple file level deduplication for storage optimization.
290
291 This means that if some people upload the same file several times, the file will only be stored once and a counter will be incremented.
292
293 If someone use his/her delete link or an admin cleans expired links, this will decrement the counter corresponding to the file.
294
295 When the counter falls to zero, the file is destroyed.
296
297 In order to know if a newly uploaded file already exist, Jirafeau will hash the file using MD5 by default but other methods are available (see `file_hash` documentation in `lib/config.original.php`).
298
299 This feature is disabled by default and can be enabled through the `file_hash` option.
300
301 ### What is the difference between "delete link" and "delete file and links" in admin interface?
302
303 When file deduplication feature is enabled, files with the same hash are not duplicated and a reference counter stores the number of links pointing to a single file.
304 So:
305 - The button "delete link" will delete the reference to the file but might not destroy the file.
306 - The button "delete file and links" will delete all references pointing to the file and will destroy the file.
307
308 ### How to contact someone from Jirafeau?
309
310 Feel free to create an [issue](https://gitlab.com/jirafeau/Jirafeau/-/issues) if you found a bug.
311
312 ### Can I buy you a coffee?
313
314 You can [drop few bucks for Jérôme Jutteau](https://www.paypal.com/paypalme/jeromejutteau)
315
316 Many Thanks <3

patrick-canterino.de