• Home
Name Date Size #Lines LOC

..--

mount-origin/12-May-2024-173161

CMakeLists.txtD12-May-2024767 2621

README.mdD12-May-20241.7 KiB4632

localhost-100y.certD12-May-20242.1 KiB3534

localhost-100y.keyD12-May-20243.2 KiB5352

minimal-http-server-tls.cD12-May-20244 KiB151117

README.md

1# lws minimal http server with tls
2
3## build
4
5```
6 $ cmake . && make
7```
8
9## usage
10
11```
12 $ ./lws-minimal-http-server-tls
13[2018/03/20 13:23:13:0131] USER: LWS minimal http server TLS | visit https://localhost:7681
14[2018/03/20 13:23:13:0142] NOTICE: Creating Vhost 'default' port 7681, 1 protocols, IPv6 off
15[2018/03/20 13:23:13:0142] NOTICE:  Using SSL mode
16[2018/03/20 13:23:13:0146] NOTICE:  SSL ECDH curve 'prime256v1'
17[2018/03/20 13:23:13:0146] NOTICE:  HTTP2 / ALPN enabled
18[2018/03/20 13:23:13:0195] NOTICE: lws_tls_client_create_vhost_context: doing cert filepath localhost-100y.cert
19[2018/03/20 13:23:13:0195] NOTICE: Loaded client cert localhost-100y.cert
20[2018/03/20 13:23:13:0195] NOTICE: lws_tls_client_create_vhost_context: doing private key filepath
21[2018/03/20 13:23:13:0196] NOTICE: Loaded client cert private key localhost-100y.key
22[2018/03/20 13:23:13:0196] NOTICE: created client ssl context for default
23[2018/03/20 13:23:14:0207] NOTICE:    vhost default: cert expiry: 730459d
24```
25
26Visit https://localhost:7681
27
28Because it uses a selfsigned certificate, you will have to make an exception for it in your browser.
29
30## Certificate creation
31
32The selfsigned certs provided were created with
33
34```
35echo -e "GB\nErewhon\nAll around\nlibwebsockets-test\n\nlocalhost\nnone@invalid.org\n" | openssl req -new -newkey rsa:4096 -days 36500 -nodes -x509 -keyout "localhost-100y.key" -out "localhost-100y.cert"
36```
37
38they cover "localhost" and last 100 years from 2018-03-20.
39
40You can replace them with commercial certificates matching your hostname.
41
42## HTTP/2
43
44If you built lws with `-DLWS_WITH_HTTP2=1` at cmake, this simple server is also http/2 capable
45out of the box.  If the index.html was loaded over http/2, it will display an HTTP 2 png.
46