Skip to content

Latest commit

 

History

History
255 lines (234 loc) · 17.8 KB

File metadata and controls

255 lines (234 loc) · 17.8 KB

This file contains details about the configuration files.

Where is it stored

Configuration is stored in the file config.yaml, exception made for custom HTML which is stored in custom.html.

These files are kept in the same folder of hfs.exe if you are using this kind of distribution on Windows, or $HOME/.hfs on other systems, where $HOME varies with the system and is the user's home folder. Anyway, the current working directory (CWD) is printed by HFS in the first lines of the console.

Many things are stored in the CWD, like the plugins you install. You can decide a different CWD passing --cwd SOME_FOLDER parameter at command line.

If you are not sure what your cwd is, look in the console, and you'll see that in first lines of your console. Here is an example, look at the 6th line:

HFS ~ HTTP File Server
© Massimo Melina <a@rejetto.com> - License https://www.gnu.org/licenses/gpl-3.0.txt
started 2026-01-03 10:10:00
version 3.0.0
build 2025-12-20T13:20:50.027Z
working directory (cwd) /Users/rejetto/.hfs
node v20.19.6
platform darwin arm64 binary

How to modify configuration

Configuration can be done in several ways

  • accessing the Admin-panel with your browser
  • directly editing the config.yaml file. As soon as you save, it is reloaded and changes are applied
    • if you don't want to use an editor, consider typing this (example) command inside the folder where the config file is: echo "port: 1080" >> config.yaml
  • passing via command line at start in the form --NAME VALUE. Values can use JSON syntax.
  • using envs in the form HFS_<uppercase property name>, like HFS_PORT=80 if you want to change the config port, but the same applies to any other config available. Values can use JSON syntax.
  • after HFS has started you can enter console command in the form config NAME VALUE
  • setting special env HFS_ENV_BOOTSTRAP=true will disable other envs when file config.yaml already exists.
  • env DISABLE_UPDATE (designed for containers) will disable updating, but check-for-update will still be possible.

NAME stands for the property name that you want to change. See the complete list below.

Configuration properties

  • port where to accept http connections. Default is 80.
  • vfs the files and folders you want to expose. For details see the dedicated following section.
  • log path of the log file. Default is access.log.
  • log_rotation frequency of log rotation. Accepted values are daily, weekly, monthly, or empty string to disable. Default is weekly.
  • log_api should api calls be logged? Default is true.
  • log_gui should GUI files be logged? Default is false.
  • log_spam log failed requests that are considered spam. Default is false.
  • log_ua include user-agent in the logs. Default is false.
  • track_ips keep track of all IP addresses seen. Default is true.
  • error_log path of the log file for errors. Default is error.log.
  • dont_log_net don't include in log entries if IP matches this network mask. Default is 127.0.0.1|::1.
  • accounts list of accounts. For details see the dedicated following section.
  • mime command what mime-type to be returned with some files. E.g.: "*.jpg": image/jpeg You can specify multiple entries, or separate multiple file masks with a p|pe. You can use the special value auto to attempt automatic detection.
  • max_kbps throttle output speed. Default is Infinity.
  • max_kbps_per_ip throttle output speed on a per-ip basis. Default is Infinity.
  • zip_calculate_size_for_seconds how long should we wait before the zip archive starts streaming, trying to understand its finale size. Default is 1.
  • open_browser_at_start should HFS open browser on localhost on start? Default is true.
  • https_port listen on a specific port. Default is -1 (disabled).
  • cert use this file for https certificate. Minimum to start https is to give a cert and a private_key. Default is none.
  • private_key use this file for https private key. Default is none.
  • allowed_referer you can decide what domains can link to your files. Wildcards supported. Default is any.
  • block a list of rules that will block connections. E.g.:
    block:
      - ip: 192.168.0.90
    
    Syntax supports wildcards and more.
  • plugins_config this is a generic place where you can find/put configuration for each plugin, at least those that need configuration.
  • enable_plugins if a plugin is not present in this list, it won't run. Defaults is [ antibrute ].
  • localhost_admin should Admin be accessed without credentials when on localhost. Default is true.
  • proxies number of proxies between server and clients to be trusted about providing clients' IP addresses. Default is 0.
  • delete_unfinished_uploads_after should unfinished uploads be deleted after a number of seconds. 0 for immediate, empty for never. Default is 1 day.
  • favicon path to file to be used as favicon. Default is none.
  • force_https redirect http traffic to https. Requires https to be working. Default is true.
  • force_lang force translation for frontend. Default is none, meaning let browser decide.
  • admin_net net-mask specifying what addresses are allowed to access Admin-panel. Default is any.
  • title text displayed in the tab of your browser. Default is "File server".
  • file_menu_on_link if to display file-menu when clicking on link, or have a dedicated button instead. Default is true.
  • min_available_mb refuse to accept uploads if available disk space is below this threshold. Default is 100.
  • dont_overwrite_uploading uploading a file with name already present in the folder will have a number appended in the name if this is enabled. Default is true. Affects the frontend only, but you can get the same effect using the ?existing=rename in the url.
  • keep_session_alive keeps you logged in while the page is left open and the computer is on. Default is true.
  • session_duration after how many seconds should the login session expire. Default is a day.
  • force_webdav_login force WebDAV clients to authenticate. Accepts: false (disabled), true (all user-agents), or a case-insensitive regex string (only matching user-agents). Default is true.
  • webdav_initial_auth one-time login prompt for matching WebDAV user-agents (used only when force_webdav_login does not match). Accepts: false (disabled), true (all user-agents), or a case-insensitive regex string. Default is WebDAVFS.
  • acme_domain domain used for ACME certificate generation. Default is none.
  • acme_renew automatically renew acme certificate close to expiration. Default is false.
  • listen_interface network interface to listen on, by specifying IP address. Default is any.
  • base_url URL to be used for links generation. Default is automatic.
  • force_address disconnect any request not made with one of the hosts specified in roots or base_url. Default is false.
  • ignore_proxies stop warning about detected proxies. Default is false.
  • comments_storage choose where to read/write comments. Default is in file descript.ion.
    • You can set attr to use only file's attributes, or attr+ion to store in file's attributes but fall-back to descript.ion as read-only.`
  • descript_ion_encoding text encoding to be used for file descript.ion. List of supported values. Default is utf8.
  • server_code javascript code that works similarly to a plugin.
  • tiles_size starting value for frontend's tiles size. Default is 0.
  • auto_play_seconds starting value for frontend's auto_play_seconds (used in Show). Default is 5.
  • theme starting value for theme. Default is "auto".
  • sort_by starting value for sort-by. Values can be: name, extension, size, time. Default is "name".
  • sort_numerics starting value for sort-numeric-names. Default is false.
  • folders_first starting value for sort-folders-first. Default is true.
  • invert_order starting value for invert-order. Default is false.
  • update_to_beta includes beta versions searching for updates. Default is false.
  • roots maps hosts (or mask of hosts) to a root different from the home folder. Default is none. E.g.
    roots:
      music.domain.com: /music
      image.domain.com: /image
    
  • max_downloads limit the number of concurrent downloads on the whole server. Default is unlimited.
  • max_downloads_per_ip limit the number of concurrent downloads for the same IP address. Default is unlimited.
  • max_downloads_per_account limit the number of concurrent downloads for each account. This is enforced only for connections that are logged in, and will override other similar settings. Default is unlimited.
  • geo_enable when enabled, country is determined for each request/connection. Necessary database will be downloaded every month (2MB).
  • geo_allow set true if geo_list should be treated as white-list, set false for black-list. Default will ignore the list.
  • geo_list list of country codes to be used as white-list or black-list. Default is none.
  • geo_allow_unknown set false to disconnect connections for which country cannot be determined. Works only if geo_allow is set. Default is true.
  • dynamic_dns_url URL to be requested to keep a domain updated with your latest IP address. Optionally, you can append “>” followed by a regular expression to determine a successful answer, otherwise status code will be used. Multiple URLs are supported, and you can specify one for each line.
  • outbound_proxy if you need outgoing http(s) requests to pass through an HTTP proxy. E.g.: http://user:password@localhost:8888. Default is none. Setting one will trigger a test request to google.com. You can skip this with env HFS_SKIP_PROXY_TEST=1 .
  • auto_basic automatically detect (based on user-agent) when the basic web interface should be served, to support legacy browsers. Default is true. No UI. You can disable it setting it to false, or recognize additional user-agents by setting a regular expression.
  • file_timeout number of seconds to wait before giving up when accessing a file. Default is 3. No UI.
  • smart_unc_folder_detection Windows-only optimization for UNC paths in VFS. When enabled, if the name of the element has no dot, it is assumed to be a folder without doing a stat call. This is faster with unreachable SMB shares, but heuristic and not fully reliable. Disable to always use regular detection. Default is true. No UI.
  • authorization_header enable support for the HTTP Authorization header. Default is true. No UI.
  • cache_control_disk_files number of seconds after which the browser should bypass the cache and check the server for an updated version of the file. Default is 5. No UI.
  • disable_custom_html disable the content of custom_html. Default is false.
  • split_uploads The size in megabytes of the chunks the upload will be split into. Default is none.
  • create-admin special entry to quickly create an admin account. The value will be set as the password. As soon as the account is created, this entry is removed.

Virtual File System (VFS)

The virtual file system is a tree of files and folders, collectively called nodes. By default, a node is a folder, unless you provide for it a source that's a file. The vfs config is a single root node. You can either bind a disk path directly to the root, like so

vfs:
  source: /data

or expose paths as children of the root:

vfs:
  children:
    - source: /data

In the first example, the root of HFS shows the contents of /data. In the second example, HFS shows a folder named "data" at the root (name inferred from the path).

Valid keys in a node are:

  • name: this is the name we'll use to display this file/folder. If not provided, HFS will infer it from the source. At least name or source must be provided.
  • source: absolute or relative path of where to get the content
  • children: just for folders, specify its virtual children. Value is a list and its entries are nodes.
  • rename: when source is a folder, you can rename entries virtually as they are read from disk. Value is a map "original name" → "new name". No UI.
  • mime: specify what mime to use for this resource. Use "auto" for automatic detection.
  • url: when this value is present, the element is a link to the URL you specify.
  • order: a number that you can set if you want to force the position of this element to the top or the bottom of the list. A positive number for the top, negative for the bottom. If you set "1" for an entry and "2" for another, the "2" will be the topmost.
  • target: optional, for links only, used to open the link in a new browser. E.g. _blank
  • accept: valid only on upload folders; not enforced, just hinting the browser. E.g. .zip,.rar
  • default: use this with a folder where you want to serve a file, instead of the standard page with the list of files. The value must be the name of the file to serve. E.g.: index.html. The value must be an absolute or relative path in the VFS, not a path on disk. It works also with other type of files. Using this will make mime default to "auto".
  • can_read: specify who can download this entry. Value is a WhoCan descriptor, which is one of these values
    • true: anyone can, even people who didn't log in. This is normally the default value.
    • false: no one can.
    • "*": any account can, i.e. anyone who logged in.
    • [ frank, peter ]: the list of accounts who can.
    • can_SOMETHING: copy the permission from another permission. This is convenient to have same value for different permissions. E.g. can_see
    • { this?: WhoCan, children?: WhoCan }: this form is useful only for folders. By using it, you can have different permission for the folder itself and its children. For example, having only the this property will make the permission limited to the folder and not be inherited by children. Otherwise, having only the children will make the permission have no effect on the folder, but only on its content.
      • this specifies permission for this folder
      • children specifies permission for the content.
  • can_see: specify who can see this element. Even if a user can download you can still make the file not appear in the list. Value is a WhoCan descriptor, refer above. Default is can_read.
  • can_upload: specify who can upload. Applies to folders with a source. Default is none.
  • can_list: specify who can see the content of a folder. Default is can_read.
  • can_archive: specify who can get the zip a folder or a set of files. Default is can_read.
  • can_delete: specify who can delete. Applies to folders with a source. Default is none.
  • masks: maps a file mask to a set of properties as the one documented in this section. E.g.
    myfile.txt:
      can_see: false
      can_read: false
    "**/*.mp3":
      can_read: false
    "*.jpg|*.png": 
      mime: auto
    
    Rules on top have priority over bottom rules. Inner rules have priority over parent's rules. A mask can carry any node property (even property "masks" itself). If the mask ends with |files|, then it will match only files and not folders. You can get the opposite effect with suffix |folders|.

Permissions set on an inner element will override inherited permissions. This means that you can restrict access to folder1, and yet decide to give free access to folder1/subfolder2.

Accounts

All accounts go under accounts: property, as a dictionary where the key is the username. E.g.

accounts:
    admin:
        password: hello123
        admin: true
    frank:
        password: another
        belongs: group1
    guest:
        password: guest
    group1:

As soon as the config is read HFS will encrypt passwords (if necessary) in a non-reversible way. It means that password property is replaced with an encrypted property: srp.

As you can see in the example, group1 has no password. This implies that you cannot log in as group1, but still group1 exists and its purpose is to gather multiple accounts and refer to them collectively as group1, so you can quickly share powers among several accounts.

For each account entries, this is the list of properties you can have:

  • ignore_limits to ignore speed limits. Default is false.
  • redirect provide a URL if you want the user to be redirected upon login. Default is none.
  • admin set true if you want to let this account log in to the Admin-panel. Default is false.
  • belongs an array of usernames of other accounts from which to inherit their permissions. Default is none.
  • password a temporary unencrypted password, transformed into srp ASAP (and removed).
  • srp encrypted password. Don't modify this, HFS will create it from password field.
  • disabled prevents using this account. Default is false. If a user is disabled, it cannot log in. A user won't inherit permissions from a group if the group is disabled. If all of its groups are disabled, then it cannot log in, even if the user itself is not disabled.
  • expire account won't work once the time has passed this timestamp. Use JSON timestamp syntax. Default is none.
  • days_to_live used to set expire on first login. Default is none.
  • disable_password_change set true if you want to forbid password change for this user. Default is false.
  • require_password_change set true if you want to require password change for this user. Default is false.
  • allow_net a mask of addresses to restrict the access of the account

Specify another file

Do you need to load a different config file that's not config.yaml? Use this parameter at command line --config PATH or similarly with an env HFS_CONFIG. The path you specify can be either a folder or full-path to the file.