This commit is contained in:
Milos Stojanovic
2019-06-19 14:30:54 +02:00
parent b3400d7577
commit dc73a18bbc
8 changed files with 166 additions and 4 deletions

View File

@@ -5,6 +5,19 @@ You can edit ```configuration.php``` to change the basic things like logo image,
NOTE: if you've made a mistake in configuration file, forgot to close a quote, the script will throw an error. Please use provided default ```configuration_sample.php``` to verify this.
```
'frontend_config' => [
'app_name' => 'FileGator',
'app_version' => APP_VERSION,
'language' => 'english',
'logo' => 'https://raw.githubusercontent.com/filegator/filegator/master/dist/img/logo.png',
'upload_max_size' => 100 * 1024 * 1024, // 100MB
'upload_chunk_size' => 1 * 1024 * 1024, // 1MB
'upload_simultaneous' => 3,
'default_archive_name' => 'archive.zip',
],
```
## Additional HTML
You can add additional html to the head and body like this:
```