暂无描述

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

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