A simple, secure HTTPS server written in Go
Go to file
2024-01-30 04:22:38 +03:30
certs Initial commit 2024-01-28 07:22:52 +03:30
.gitignore Initial commit 2024-01-28 07:22:52 +03:30
go.mod Initial commit 2024-01-28 07:22:52 +03:30
main.go Initial commit 2024-01-28 07:22:52 +03:30
main.go_direct_embed Initial commit 2024-01-28 07:22:52 +03:30
main.go_with_go_embed Initial commit 2024-01-28 07:22:52 +03:30
Makefile Initial commit 2024-01-28 07:22:52 +03:30
README.md Update README.md 2024-01-30 04:22:38 +03:30

Adhoc https server

adhoc-server is a simple, secure HTTPS server written in Go. It serves files from a specified directory over HTTPS, providing a quick and easy way to set up a file server with SSL encryption.

Usage

To run theServer:

./adhoc-server [options] [path]

Options:

  • -b --bind - The address to bind the HTTPS server (default "localhost:4443").
  • -v, --version - Display the version of the server.
  • -h, --help - Display the help message.

Path:

  • The path of the directory to serve. Defaults to the current directory.

Building from Source

To build adhoc-server from source, clone the repository and use the provided Makefile.

git clone https://git.behzadan.ir/p/adhoc-server.git
cd adhoc-server
make all

This will build the server for Linux on amd64, arm7, and arm64 architectures.

To create release binaries:

make release

This command builds all binaries and packages them into .tar.gz files.