|
|
il y a 1 mois | |
|---|---|---|
| .. | ||
| certs | il y a 1 mois | |
| confd | il y a 1 mois | |
| public | il y a 1 mois | |
| src | il y a 1 mois | |
| Dockerfile | il y a 1 mois | |
| README.md | il y a 1 mois | |
| build.sh | il y a 1 mois | |
| enable_subpathing.sh | il y a 1 mois | |
| enable_subpathing.sh.tpl | il y a 1 mois | |
| entrypoint.sh | il y a 1 mois | |
| frontend-testing.sh | il y a 1 mois | |
| index.html | il y a 1 mois | |
| package-lock.json | il y a 1 mois | |
| package.json | il y a 1 mois | |
| run.sh | il y a 1 mois | |
| selenium-test.js | il y a 1 mois | |
| test.sh | il y a 1 mois | |
| vite.config.js | il y a 1 mois | |
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