惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

S
SegmentFault 最新的问题
Jina AI
Jina AI
罗磊的独立博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
J
Java Code Geeks
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
B
Blog RSS Feed
爱范儿
爱范儿
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
T
The Blog of Author Tim Ferriss
腾讯CDC
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
I
InfoQ
月光博客
月光博客
博客园_首页
Vercel News
Vercel News
P
Proofpoint News Feed
GbyAI
GbyAI
Y
Y Combinator Blog

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - bingud/filemat: Web-based file manager
bingud · 2026-05-27 · via Hacker News: Show HN

Contents

Features
Requirements
Installation
Configuration
Usage recommendations
Technical details

What is Filemat?

Filemat is a web-based file manager.
It's self-hosted and allows you to manage your local files from anywhere using a web UI.

Similar to other alternatives you might know: Nextcloud Files, FileBrowser.org

Files screenshot

Features

  • Fast and simple setup
  • User management, roles
  • Granular permissions (by user or role)
    • File permissions
    • Application administrative permissions
  • File sharing with public link (optional password)
  • Text file editing, video streaming

See full list of features here

Requirements

  • Linux
  • Java 17
  • (Or just Docker)

Installation

You can run the JAR file directly, or use the Docker image (https://hub.docker.com/r/bingud/filemat).
Filemat is currently not available on apt.

- Running the Docker image

See how to deploy with Docker

- Running normally

Make sure your machine has Linux and Java 17 installed.
Download the JAR file from the releases section.

Use this command to run the file with Java (change the filename according to the JAR file you downloaded):
java -jar filemat.jar

Configuration

All configuration details here

- Environment variables

Input multiple values by putting a colon in between (/one:/two)

Name Description Default value Example value
FM_HIDDEN_FOLDER_PATHS List of folder paths to fully exclude and block. /root:/home/folder
FM_HIDE_SENSITIVE_FOLDERS Whether to hide sensitive Linux folders (like /root, .ssh) true false
FM_NON_SENSITIVE_FOLDERS List of folders to exclude from sensitive folder list /root:/etc/ssh
FM_FOLLOW_SYMBOLIC_LINKS Whether to follow symbolic links, or show them as normal files false true
FM_FORCE_DELETABLE_FOLDERS List of protected system folders to be made deletable /root:/etc
FM_ALLOW_READ_DATA_FOLDER Allow the application data folder to be accessed false true
FM_ALLOW_WRITE_DATA_FOLDER Allow the application data folder to be modified false true
FM_PRINT_LOGS Whether to print logs to console true false
FM_DEV_MODE Whether Filemat is in dev mode false true

Usage recommendations

  • Run Filemat as non-root
    Create a dedicated linux user for Filemat. Create a group and add the Filemat user. Also add your other users that should keep access to the file.
    Set this group (and group permissions) for all files that Filemat should manage.
    It's possible to run Filemat as root — the most sensitive files are fully blocked by default — but it's discouraged for security reasons.

  • Limit file access
    If running Filemat with Docker, choose specific folders that Filemat should be able to access,
    instead of exposing your entire filesystem through a Docker volume.
    It's easy to configure volumes later with Docker compose.

Technical details

How files are exposed / secured

Files must be explicitly configured to be exposed, so that Filemat can allow users to interact with them.
The application data folder is fully blocked by default, and can only be made accessible using an environment variable.
Symbolic links can be toggled.

In order to make any of these changes through the web UI, a user must have CLI access to the Filemat deployment to authenticate.
Environment variables override these settings.

Contributing

Bug reports and feature requests are welcome in the GitHub Issues.
For larger changes, please open an issue first to discuss what you want to add or change.