dmarro89 / dare-db

Dare-DB is a lightweight in-memory database written in Go, featuring Redis-inspired hashtables and HTTP/HTTPS endpoints for seamless data storage and retrieval, with Docker support for easy deployment
MIT License
16 stars 1 forks source link

Implement secure communication on HTTP Server #6

Closed dmarro89 closed 2 weeks ago

dmarro89 commented 1 month ago

Currently the server is using HTTP but it should use HTTPS -> https://github.com/dmarro89/dare-db/blob/main/main.go

  1. Convert the HTTP Server to HTTPS - https://pkg.go.dev/net/http#ListenAndServeTLS
  2. Write some E2E to test the secure communication