From 0b14a3f1ff4a299fe92bea38497bf0e8b973bf45 Mon Sep 17 00:00:00 2001 From: Zemmiph0bia Date: Wed, 27 Feb 2019 21:59:29 +1100 Subject: [PATCH] Small documentation update (#2376) Small documentation fix - coming across the phrase "encrypted WSS socket" and it's a bit odd when you're mentally expanding it to: "encrypted web socket secure socket" --- docs/source/essentials/server.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/essentials/server.md b/docs/source/essentials/server.md index ce31b020..99fd577e 100644 --- a/docs/source/essentials/server.md +++ b/docs/source/essentials/server.md @@ -145,7 +145,7 @@ Apollo Server works great in "serverless" environments such as Amazon Lambda and

SSL/TLS Support

-If you require an HTTPS connection to your Apollo Server, you can use the `https` module with `apollo-server-express`. Subscriptions can also go through an encrypted WSS socket. +If you require an HTTPS connection to your Apollo Server, you can use the `https` module with `apollo-server-express`. Subscriptions can also go through an encrypted WebSocket (WSS) Here is an example of using HTTPS in production and HTTP in development, with subscriptions: