laptop_mac
macOS
Run FileBrowser Quantum natively on macOS.
Download
- Go to releases page
- Download
filebrowser-darwin-amd64
(Intel) orfilebrowser-darwin-arm64
(Apple Silicon) - Save to a folder
Enable Permissions
Step 1: Make Executable
chmod +x filebrowser-darwin-arm64
Step 2: Allow in Security Settings
On first run, macOS will block the app:
- Try to run:
./filebrowser-darwin-arm64
- Go to System Preferences → Security & Privacy
- Click Allow for FileBrowser
Optional: Install FFmpeg
brew install ffmpeg
Create Configuration
./filebrowser-darwin-arm64 setup
Or create config.yaml
:
server:
port: 8080
sources:
- path: "/Users/yourname/Documents"
config:
defaultEnabled: true
auth:
adminUsername: admin
Run FileBrowser
./filebrowser-darwin-arm64 -c config.yaml
Access at http://localhost:8080
Run as Service (launchd)
Create /Library/LaunchDaemons/com.filebrowser.plist
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.filebrowser</string>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/filebrowser</string>
<string>-c</string>
<string>/usr/local/etc/filebrowser/config.yaml</string>
</array>
<key>RunAtLoad</key>
<true/>
<key>KeepAlive</key>
<true/>
</dict>
</plist>
Load service:
sudo launchctl load /Library/LaunchDaemons/com.filebrowser.plist