1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/https-tls/openssl
2022-02-25 21:08:53 +00:00
..
src restructure folders 2022-02-18 02:01:48 +00:00
Cargo.toml update actix web to stable version 2022-02-25 21:08:53 +00:00
cert.pem restructure folders 2022-02-18 02:01:48 +00:00
key.pem restructure folders 2022-02-18 02:01:48 +00:00
README.md fix static-files readme name 2022-02-18 03:36:04 +00:00

tls example

Usage

Certificate

We put the self-signed certificate in this directory as an example but your browser would complain that it isn't secure. So we recommend to use mkcert to trust it. To use local CA, you should run:

mkcert -install

If you want to generate your own cert/private key file, then run:

mkcert 127.0.0.1

server

cd security/openssl
cargo run (or ``cargo watch -x run``)
# Started http server: 127.0.0.1:8443

web client