static-web-server 2.42.0

A cross-platform, high-performance and asynchronous web server for static files-serving.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
### Generate the EC private key in SEC1 format

```sh
openssl ecparam -name prime256v1 -genkey -noout -out ec_key.pem
```

### Create a certificate signing request (CSR)

```sh
openssl req -new -key ec_key.pem -out ec_csr.pem
```

### Generate the self-signed certificate

```sh
openssl x509 -req -in ec_csr.pem -signkey ec_key.pem -out ec_cert.pem -days 365
```