Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/akagi201/serve
Simple http server for localhost development
https://github.com/akagi201/serve
developer-tools file-server golang http
Last synced: 5 days ago
JSON representation
Simple http server for localhost development
- Host: GitHub
- URL: https://github.com/akagi201/serve
- Owner: Akagi201
- License: mit
- Created: 2016-10-04T06:36:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-06T04:02:41.000Z (over 1 year ago)
- Last Synced: 2024-06-19T10:10:28.671Z (5 months ago)
- Topics: developer-tools, file-server, golang, http
- Language: Go
- Size: 36.1 KB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# serve
A dead simple file server.
## Features
- [x] Serve static files
- [x] Github CI/CD
- [x] Deploy to digitalocean kubernetes cluster
- [ ] Auto https
- [ ] Safe upload file
- [ ] Multi stage docker build### HTTPS certs
- `openssl genrsa -out server.key 2048`
- `openssl req -new -x509 -key server.key -out server.crt -days 365`
- Convert crt to pem: `openssl x509 -in server.crt -out server.pem -outform PEM`