Aucune description

tum 9de2549954 first commit il y a 1 mois
..
certs 9de2549954 first commit il y a 1 mois
confd 9de2549954 first commit il y a 1 mois
public 9de2549954 first commit il y a 1 mois
src 9de2549954 first commit il y a 1 mois
Dockerfile 9de2549954 first commit il y a 1 mois
README.md 9de2549954 first commit il y a 1 mois
build.sh 9de2549954 first commit il y a 1 mois
enable_subpathing.sh 9de2549954 first commit il y a 1 mois
enable_subpathing.sh.tpl 9de2549954 first commit il y a 1 mois
entrypoint.sh 9de2549954 first commit il y a 1 mois
frontend-testing.sh 9de2549954 first commit il y a 1 mois
index.html 9de2549954 first commit il y a 1 mois
package-lock.json 9de2549954 first commit il y a 1 mois
package.json 9de2549954 first commit il y a 1 mois
run.sh 9de2549954 first commit il y a 1 mois
selenium-test.js 9de2549954 first commit il y a 1 mois
test.sh 9de2549954 first commit il y a 1 mois
vite.config.js 9de2549954 first commit il y a 1 mois

README.md

Lalits frontend magic

Localhost Certificate info:

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

Using your own certificate

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