From 7f4c74cb29599e573f5345eb44fe89cdf883da06 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Sat, 23 May 2020 21:56:19 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 05c12a3..b893bc1 100644 --- a/README.md +++ b/README.md @@ -8,9 +8,9 @@ Learn more about Gemini [here](https://portal.mozz.us/). ## Features - A built-in static file server with support for gemini directories and CGI scripts. -- An extendable application framework that loosely mimics the [WSGI](https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface) interface. +- A python application framework that loosely mimics the [WSGI](https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface) interface design. - A lean, modern python codebase with type hints and black formatting. -- A solid foundation built on top of the [twisted](https://twistedmatrix.com/trac/) networking engine. +- A solid foundation built on top of the [twisted](https://twistedmatrix.com/trac/) asynchronous networking engine. ## Installation From cdb0b93ce109fd12f3ac6b6780662536c93bf083 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Sat, 23 May 2020 21:57:28 -0400 Subject: [PATCH 2/3] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b893bc1..5c559da 100644 --- a/README.md +++ b/README.md @@ -105,9 +105,9 @@ in the request environment. ``REMOTE_USER`` will contain the subject common name and ``TLS_CLIENT_HASH`` will contain a fingerprint that can be used for TOFU pinning. You can specify a CA for client validation with the ``--tls-cafile`` or ``--tls-capath`` -flags. Connections validated by the CA will have the ``TLS_CLIENT_VERIFIED`` flag set to -True. Instructions on how to generate CA's are outside of the scope of this readme, but -you can find many helpful tutorials +flags. Connections validated by the CA will have the ``TLS_CLIENT_VERIFIED`` environment +variable set to True. Instructions on how to generate CA's are outside of the scope of +this readme, but you can find many helpful tutorials [online](https://www.makethenmakeinstall.com/2014/05/ssl-client-authentication-step-by-step/). ### Static Files From 4d0c640aec56d21bfdf7b57811394f6a40ce0335 Mon Sep 17 00:00:00 2001 From: Michael Lazar Date: Sat, 23 May 2020 22:04:27 -0400 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c559da..ec424e8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ Learn more about Gemini [here](https://portal.mozz.us/). ## Features - A built-in static file server with support for gemini directories and CGI scripts. -- A python application framework that loosely mimics the [WSGI](https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface) interface design. +- A framework for python applications that loosely mimics the [WSGI](https://en.wikipedia.org/wiki/Web_Server_Gateway_Interface) interface design. - A lean, modern python codebase with type hints and black formatting. - A solid foundation built on top of the [twisted](https://twistedmatrix.com/trac/) asynchronous networking engine.