aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-03-30 03:40:00 -0700
committerFuwn <[email protected]>2022-03-30 03:40:00 -0700
commit3fe74dc10d9f01c6e66dbe7bb867e665b07b59b5 (patch)
treeddf1fa526ebe450774a596d36ae5b4ae1c9ac4a3
parentfeat: custom port (diff)
downloadlocus-3fe74dc10d9f01c6e66dbe7bb867e665b07b59b5.tar.xz
locus-3fe74dc10d9f01c6e66dbe7bb867e665b07b59b5.zip
revert: "build(cargo-make): change key file names"
This reverts commit 4d2f5a3f3038044d7e89d91aeddec558784988f2.
-rw-r--r--Makefile.toml12
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 80be522..2269370 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -25,6 +25,8 @@ dependencies = ["fmt", "check"]
[tasks.checkfc]
dependencies = ["fmt", "check", "clippy"]
+# openssl req -x509 -newkey rsa:4096 -keyout windmark_private.pem -out windmark_public.pem -days 365
+
[tasks.genkey]
command = "openssl"
args = [
@@ -34,9 +36,9 @@ args = [
"-new",
"-nodes",
"-keyout",
- "locus_private.pem",
+ "windmark_private.pem",
"-out",
- "locus_public.pem",
+ "windmark_public.pem",
"-subj",
"/CN=fuwn.me"
]
@@ -49,11 +51,11 @@ args = [
"-days",
"365",
"-in",
- "locus_public.pem",
+ "windmark_public.pem",
"-signkey",
- "locus_private.pem",
+ "windmark_private.pem",
"-out",
- "locus_pair.pem"
+ "windmark_pair.pem"
]
[tasks.run]