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

推荐订阅源

博客园_首页
H
Help Net Security
量子位
The Cloudflare Blog
博客园 - Franky
博客园 - 聂微东
博客园 - 司徒正美
Last Week in AI
Last Week in AI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Apple Machine Learning Research
Apple Machine Learning Research
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
有赞技术团队
有赞技术团队
罗磊的独立博客
GbyAI
GbyAI
雷峰网
雷峰网
T
The Blog of Author Tim Ferriss
Martin Fowler
Martin Fowler
S
SegmentFault 最新的问题
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
U
Unit 42
MongoDB | Blog
MongoDB | Blog

Hacker News: Front Page

SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Introducing Claude Opus 4.7 Qwen Studio The Future of Everything is Lies, I Guess: Where Do We Go From Here? GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Ancient DNA reveals pervasive directional selection across West Eurasia [pdf] AI cybersecurity is not proof of work Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. A Better Ludum Dare; Or, How to Ruin a Legacy GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Unexpected €54k billing spike in 13 hours: Firebase browser key without API restrictions used for Gemini requests Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent Codex Hacked a Samsung TV
GitHub - bingud/filemat: Web-based file manager
bingud · 2026-05-27 · via Hacker News: Front Page

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.