https://github.com/jkandasa/static-file-server
Lightweight static file server
https://github.com/jkandasa/static-file-server
lightweight server static-file-server
Last synced: about 1 year ago
JSON representation
Lightweight static file server
- Host: GitHub
- URL: https://github.com/jkandasa/static-file-server
- Owner: jkandasa
- License: apache-2.0
- Created: 2021-06-05T05:59:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-06T11:20:47.000Z (about 5 years ago)
- Last Synced: 2025-04-07T23:46:42.918Z (about 1 year ago)
- Topics: lightweight, server, static-file-server
- Language: Go
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Lightweight static file server


Lightweight static file server serves static files.
### Setup in docker
```bash
docker run --rm --name static-file-server \
--publish 8080:8080 \
--volume $PWD/data:/data \
--env TZ="Asia/Kolkata" \
--env BRAND_NAME="Lightweight Static File Server" \
jkandasa/static-file-server:master
```
### Binary execution
```bash
$ ./static-file-server-master-linux-amd64 -port 8080 -dir /data
```
## Download
* [Container image](https://hub.docker.com/r/jkandasa/static-file-server)
* [Executable binaries](https://github.com/jkandasa/static-file-server/releases)