From d4fce7233304432aa9283403c7619e55feb52aca Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 2 Jun 2025 17:43:10 -0400 Subject: [PATCH] chore: update some cert stuff --- run-non-nix.sh | 2 +- run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/run-non-nix.sh b/run-non-nix.sh index 839cf74..9f456f4 100755 --- a/run-non-nix.sh +++ b/run-non-nix.sh @@ -15,5 +15,5 @@ EXAMPLES=${EXAMPLES:-../examples} echo Starting server serving ${EXAMPLES} mkdir -p .session_store make kitchen -./target/debug/kitchen --verbose debug serve --listen 127.0.0.1:3030 --session_dir .session_store --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+2.pem --cert_key ~/tls-certs/localhost+2-key.pem $@ +./target/debug/kitchen --verbose debug serve --listen 127.0.0.1:3030 --session_dir .session_store --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+1.pem --cert_key ~/tls-certs/localhost+1-key.pem $@ # This is ghetto but I'm doing it anyway diff --git a/run.sh b/run.sh index 6ca2d5d..b12c3af 100755 --- a/run.sh +++ b/run.sh @@ -14,5 +14,5 @@ EXAMPLES=${EXAMPLES:-../examples} echo Starting server serving ${EXAMPLES} mkdir .session_store -nix run .\#kitchenDebug -- --verbose debug serve --session_dir .session_store --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+2.pem --cert_key ~/tls-certs/localhost+2-key.pem $@ +nix run .\#kitchenDebug -- --verbose debug serve --session_dir .session_store --dir ${EXAMPLES} --tls --cert ~/tls-certs/localhost+1.pem --cert_key ~/tls-certs/localhost+1-key.pem $@ # This is ghetto but I'm doing it anyway