move dirs
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
## Создать свой SSL сервификат
|
||||
|
||||
```sh
|
||||
openssl req -x509 -out server.crt -keyout server.key \
|
||||
-newkey rsa:2048 -nodes -sha256 \
|
||||
-subj '/CN=localhost' -extensions EXT -config <( \
|
||||
printf "[dn]\nCN=localhost\n[req]\ndistinguished_name = dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth")
|
||||
```
|
||||
|
||||
## Флаги `chrome` для запуска с самописным сертификатом
|
||||
|
||||
```sh
|
||||
chrome --ignore-certificate-errors --unsafely-treat-insecure-origin-as-secure=https://localhost:1443
|
||||
```
|
||||
Reference in New Issue
Block a user