Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`