Açıklama Yok

tum 9bd700d33c gitignore 1 ay önce
..
certs 9bd700d33c gitignore 1 ay önce
confd 9de2549954 first commit 1 ay önce
public 9de2549954 first commit 1 ay önce
src 9de2549954 first commit 1 ay önce
Dockerfile 9de2549954 first commit 1 ay önce
README.md 9de2549954 first commit 1 ay önce
build.sh 9de2549954 first commit 1 ay önce
enable_subpathing.sh 9de2549954 first commit 1 ay önce
enable_subpathing.sh.tpl 9de2549954 first commit 1 ay önce
entrypoint.sh 9de2549954 first commit 1 ay önce
frontend-testing.sh 9de2549954 first commit 1 ay önce
index.html 9de2549954 first commit 1 ay önce
package-lock.json 9de2549954 first commit 1 ay önce
package.json 9de2549954 first commit 1 ay önce
run.sh 9de2549954 first commit 1 ay önce
selenium-test.js 9de2549954 first commit 1 ay önce
test.sh 9de2549954 first commit 1 ay önce
vite.config.js 9de2549954 first commit 1 ay önce

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