1
0
mirror of https://github.com/actix/examples synced 2024-11-23 14:31:07 +01:00

fix: directory path should be https-tls (#689)

This commit is contained in:
jamesarch 2023-12-29 20:25:15 +08:00 committed by GitHub
parent 5072295de5
commit 954c10fc88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ A new `key.pem` and `cert.pem` will be saved to the current directory. You will
### Running Server
```console
$ cd security/openssl
$ cd https-tls/openssl
$ cargo run # (or `cargo watch -x run`)
starting HTTPS server at 127.0.0.1:8443
```

View File

@ -9,7 +9,7 @@ All the self-signed certificate are in the ./certs directory, including the CA c
### Server
```sh
cd security/rustls-client-cert
cd https-tls/rustls-client-cert
cargo run
```