summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-10-30 17:28:33 -0400
committerJune McEnroe <june@causal.agency>2019-10-30 17:28:33 -0400
commit39bf65ea0ce965fb542451000857594d0a051ead (patch)
treeeb4fd28dd10e457a7cf845536a1f0f4463fd41b2
parentWarn when consumers drop messages (diff)
downloadpounce-39bf65ea0ce965fb542451000857594d0a051ead.tar.gz
pounce-39bf65ea0ce965fb542451000857594d0a051ead.zip
Add make target for localhost.crt
Adapted from <https://letsencrypt.org/docs/certificates-for-localhost/>.
Diffstat (limited to '')
-rw-r--r--.gitignore3
-rw-r--r--Makefile6
2 files changed, 8 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index c8c6546..ab1ddcf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,6 +1,7 @@
 *.conf
 *.o
-*.pem
 config.mk
+localhost.crt
+localhost.key
 pounce
 tags
diff --git a/Makefile b/Makefile
index 6af3477..c0b8323 100644
--- a/Makefile
+++ b/Makefile
@@ -39,3 +39,9 @@ install: pounce pounce.1 rc.pounce
 
 uninstall:
 	rm -f ${PREFIX}/bin/pounce ${MANDIR}/man1/pounce.1 ${ETCDIR}/rc.d/pounce
+
+localhost.crt:
+	printf "[dn]\nCN=localhost\n[req]\ndistinguished_name=dn\n[EXT]\nsubjectAltName=DNS:localhost\nkeyUsage=digitalSignature\nextendedKeyUsage=serverAuth" \
+		| openssl req -x509 -out localhost.crt -keyout localhost.key \
+		-newkey rsa:2048 -nodes -sha256 \
+		-subj '/CN=localhost' -extensions EXT -config /dev/fd/0
4b3a2bb69d168014bea0dd230e0b2235441d&follow=1'>Draw lines to tile edgeJune McEnroe 2019-01-08Factor out default pathsJune McEnroe 2019-01-08Remove incorrect default coordinatesJune McEnroe 2019-01-07Set img src when explore fragment changesJune McEnroe 2019-01-07Compress PNG data in imageJune McEnroe kcgi never enables compression for FastCGI. 2019-01-07madvise MADV_NOCORE in imageJune McEnroe 2019-01-07Add license notice to explore JavaScriptJune McEnroe 2019-01-07Add Q/Home binding in exploreJune McEnroe 2019-01-07Fix explore image URLJune McEnroe 2019-01-07Add HOME button, ssh link, AGPL notice to exploreJune McEnroe 2019-01-06Add meta viewport to exploreJune McEnroe 2019-01-06Set background and max-width in exploreJune McEnroe 2019-01-06Swallow writes after the connection is closedJune McEnroe It was not okay. 2019-01-06Handle KCGI_HUPJune McEnroe I hope it's okay that I keep writing to the fwopen stream after streamWrite returns -1. 2019-01-06Install html filesJune McEnroe