go-http-file-server

module
v1.2.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2019 License: MIT

README

Go HTTP File Server

Simple command line based HTTP file server to share local file system.

Go HTTP File Server pages

Features

  • More friendly UI than Apache/Nginx directory index page
  • Adapt for mobile display
  • Can download the whole contents of current directory as archive file if enabled
  • Can upload files to current directory if enabled
  • Can specify a custom template for page rendering
  • Support location alias(mount another directory to url location)

Compile

Minimal required Go version is 1.9.

go build src/main.go

Will generate executable file "main" in current directory.

If default html template files under src/tpl changed, need to re-embed templates into go files:

cd src
make tpls

Then compile the project again.

Usage

server [options]

-l|--listen <ip|port|:port|ip:port|socket> ...
    IP and port the server listens on, e.g. ":80" or "127.0.0.1:80".
    If --cert and --key are specified, port listens for TLS connection.
    If port is not specified, use "80" for pure HTTP mode, or "443" for TLS mode.
    If value contains "/" then treat it as a unix socket file.
    Flag "-l" or "--listen" can be ommitted.
--listen-plain <ip|port|:port|ip:port|socket> ...
    Similar to --listen, but force to use non-TLS mode
--listen-tls <ip|port|:port|ip:port|socket> ...
    Similar to --listen, but force to use TLS mode, will failed if cert or key is not specified.

--hostname <hostname> ...
    Specify hostname associated with current virtual host.
    If hostname starts with ".", treat it as a suffix, to match all levels of sub domains.

-r|--root <directory>
    Root directory of the server.
    Defaults to current working directory.

-x|--fallback-proxy <separator><url-path><separator><proxy-target> ...
    If local resource under <url-path> not found, reverse proxy to <proxy-target>.
    <proxy-target> must be the format of schema://host/path.
-X|--always-proxy <separator><url-path><separator><proxy-target> ...
    Always reverse proxy from <url-path> to <proxy-target>.
    <proxy-target> must be the format of schema://host/path.
--ignore-proxy-target-bad-cert
    Ignore proxy target server's certificate validation issue.

-a|--alias <separator><url-path><separator><fs-path> ...
    Set path alias. e.g. ":/doc:/usr/share/doc"

-U|--global-upload
    Allow upload files for all url paths.
    If filename exists, will try to add or increase numeric suffix.
    Use it with care.
-u|--upload <url-path> ...
    Set url paths that allows to upload files.
    Use it with care.
--upload-dir <fs-path> ...
    Similar to --upload, but use file system path instead of url path.
    Use it with care.

-A|--global-archive
    Allow user to download the whole contents of current directory for all url paths.
    A download link will appear on top part of the page.
    Make sure there is no circular symbol links.
--archive <url-path> ...
    Allow user to download the whole contents of current directory for specific url paths.
--archive-dir <fs-path> ...
    Similar to --archive, but use file system path instead of url path.

--global-cors
    Allow CORS requests for all url path.
--cors <url-path> ...
    Allow CORS requests for specific url path.
--cors-dir <fs-path> ...
    Allow CORS requests for specific file system path.

--global-auth
    Use Basic Auth for all url path.
--auth <url-path> ...
    Use Basic Auth for specific url path.
--auth-dir <fs-path> ...
    Use Basic Auth for specific file system path.
--user [<username>]:[<password>] ...
    Specify users for current virtual host for Basic Auth, empty username and/or password is allowed.
--user-base64 [<username>]:[<base64-password>] ...
--user-md5 [<username>]:<md5-password> ...
--user-sha1 [<username>]:<sha1-password> ...
--user-sha256 [<username>]:<sha256-password> ...
--user-sha512 [<username>]:<sha512-password> ...
    Specify users for Basic Auth, with encoded password.

-c|--cert <file>
    Specify TLS certificate file.

-k|--key <file>
    Specify key file of TLS certificate.

-t|--template <file>
    Use a custom template file for rendering pages, instead of builtin template.

-S|--show <wildcard> ...
-SD|--show-dir <wildcard> ...
-SF|--show-file <wildcard> ...
    If specified, files or directories match wildcards(except hidden by hide option) will be shown. 

-H|--hide <wildcard> ...
-HD|--hide-dir <wildcard> ...
-HF|--hide-file <wildcard> ...
    If specified, files or directories match wildcards will not be shown.

-L|--access-log <file>
    Access log file.
    Set "-" to use stdout.
    Set to empty to disable access log.

-E|--error-log <file>
    Error log file.
    Set "-" to use stderr.
    Set to empty to disable error log.
    Defaults to "-".

--config <file>
    External config file to load for current virtual host.

    Its content is option list of any other options,
    same as the form specified on command line,
    separated by whitespace characters.

    The external config's priority is lower than arguments specified on command line.
    If one option is specified on command line, then external config of that option is ignored.

,,
    To specify multiple virtual hosts with options, split these hosts' options by this sign.
    Options above can be specified for each virtual host.

    If multiple virtual hosts share same IP and ports,
    use --hostname to identify them according to the request.
    If request host name does not match any virtual host,
    server will try to use first virtual host that has no hostname,
    otherwise use the first virtual host.

Examples

Start server on port 8080, root directory is current working directory:

server -l 8080

Start server on port 8080, root directory is /usr/share/doc:

server -l 8080 -r /usr/share/doc

Start server on default port, root directory is /tmp, and allow upload files to file system directory /tmp/data:

server -r /tmp -u /data

Share files from /etc, but also mount /usr/share/doc to url path /doc

server -r /etc -a :/doc:/usr/share/doc

Start server on port 8080, serve for HTTPS protocol

server -k /path/to/certificate/key -c /path/to/certificate/file -l 8080

Do not show hidden unix directories and files that starts with .. Tips: wrap wildcard by quotes to prevent expanding by shell.

server -H '.*'

Show access log on console:

server -L -

Http Basic Auth:

  • requires authentication for url /files
  • username: user1, password: pass1
  • username: user2, password: pass2
server --auth /files --user user1:pass1 --user-sha1 user2:8be52126a6fde450a7162a3651d589bb51e9579d

Start 2 virtual hosts:

  • server 1
    • listen on port 80 for http
    • listen on port 443 for https
      • cert file: /cert/server1.pem
      • key file: /cert/server1.key
    • hostname server1.example.com
    • root directory /var/www/server1
  • server 2
    • listen on port 80 for http
    • listen on port 443 for https
      • cert file: /cert/server2.pem
      • key file: /cert/server2.key
    • hostname server2.example.com
    • root directory /var/www/server2
server --listen-plain 80 --listen-tls 443 -c /cert/server1.pem -k /cert/server1.key --hostname server1.example.com -r /var/www/server1 ,, --listen-plain 80 --listen-tls 443 -c /cert/server2.pem -k /cert/server2.key --hostname server2.example.com -r /var/www/server2

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL