From 9cb957d6c2e85a7f5add12bad04e8709a43a8368 Mon Sep 17 00:00:00 2001 From: Matt Holt Date: Tue, 18 Apr 2017 18:28:26 -0600 Subject: [PATCH] Updated Writing a Plugin: Server Type (markdown) --- Writing-a-Plugin:-Server-Type.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Writing-a-Plugin:-Server-Type.md b/Writing-a-Plugin:-Server-Type.md index 8f803ff..3f99a01 100644 --- a/Writing-a-Plugin:-Server-Type.md +++ b/Writing-a-Plugin:-Server-Type.md @@ -1,6 +1,6 @@ **[Join the Caddy Community Forum](https://forum.caddyserver.com) to chat with other Caddy developers!** -Caddy ships with an HTTP server, but you can implement other server types and plug them into Caddy. Other server types could be mail, DNS, TCP, something else used internally, etc. +Caddy ships with an HTTP server, but you can implement other server types and plug them into Caddy. Other server types could be SSH, SFTP, TCP, something else used internally, etc. _To Caddy, the notion of a server is anything that can `Listen()` and `Serve()`. What that means and how that works is up to you. Feel free to be creative and liberal with this idea._