Customize branding elements that appear in the UI and HTML metadata.
Configuration link
1
2
3
4
5
6
7
8
| frontend:
name: "Company Files"
description: "Secure file storage"
favicon: "/path/to/favicon.png"
externalLinks:
- text: "Support"
title: "Get support"
url: "https://support.example.com"
|
| Option | Default | Description |
|---|
name | “FileBrowser Quantum” | Display name in header and PWA manifest |
description | "" | HTML meta description for SEO/link previews |
favicon | Built-in | Path to custom favicon image |
externalLinks | [] | Custom links in sidebar |
Display name appears in:
- Application header
- Browser tab title
- PWA manifest
- Mobile home screen
1
2
| frontend:
name: "Acme Corp Files"
|
Description link
HTML meta description used for:
- Search engine results
- Social media link previews
- Browser metadata
1
2
| frontend:
description: "Secure file sharing and storage for Acme Corporation"
|
Custom favicon (PNG recommended):
1
2
| frontend:
favicon: "/path/to/favicon.png"
|
Recommended size: 256x256 pixels
External Links link
Add custom sidebar links:
1
2
3
4
5
6
7
8
| frontend:
externalLinks:
- text: "Documentation" # Link text (required)
title: "View documentation" # Hover tooltip (required)
url: "https://docs.example.com" # URL (required)
- text: "Support Portal"
title: "Get help"
url: "https://support.example.com"
|
Fields:
text - Link text displayed in sidebar (required)url - Destination URL (required)title - Tooltip shown on hover
Complete Example link
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| frontend:
name: "Acme Corp Storage"
description: "Secure enterprise file management system"
favicon: "/custom/favicon.png"
externalLinks:
- text: "Intranet"
title: "Company intranet"
url: "https://intranet.acme.com"
- text: "IT Support"
title: "Get IT help"
url: "https://support.acme.com"
- text: "Policies"
title: "File storage policies"
url: "https://policies.acme.com/storage"
|
Next Steps link