説明なし

tum 9de2549954 first commit 1 ヶ月 前
..
certs 9de2549954 first commit 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