|
|
hace 1 mes | |
|---|---|---|
| .. | ||
| certs | hace 1 mes | |
| confd | hace 1 mes | |
| public | hace 1 mes | |
| src | hace 1 mes | |
| Dockerfile | hace 1 mes | |
| README.md | hace 1 mes | |
| build.sh | hace 1 mes | |
| enable_subpathing.sh | hace 1 mes | |
| enable_subpathing.sh.tpl | hace 1 mes | |
| entrypoint.sh | hace 1 mes | |
| frontend-testing.sh | hace 1 mes | |
| index.html | hace 1 mes | |
| package-lock.json | hace 1 mes | |
| package.json | hace 1 mes | |
| run.sh | hace 1 mes | |
| selenium-test.js | hace 1 mes | |
| test.sh | hace 1 mes | |
| vite.config.js | hace 1 mes | |
Creating a localhost certificate:
openssl genrsa -out privkey.pem 2048
openssl req -new -key privkey.pem -out certreq.csr
openssl x509 -req -days 3650 -in certreq.csr -signkey privkey.pem -out fullchain.pem
If you have your own .crt and .key file, you can do it like this:
openssl x509 -in mycert.crt -out fullchain.cert.pem -outform PEM
The KEY file has to be named privkey.pem
mv cert.key privkey.pem