From 35a965ddabf26583118e0c240a6e907d232265dd Mon Sep 17 00:00:00 2001 From: Leandro Facchinetti Date: Sun, 22 Mar 2020 03:34:55 -0400 Subject: [PATCH] . --- README.md | 12 ++++++++++++ src/index.tsx | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7853dbf..6d2a33b 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,18 @@ The web server will be running at `http://localhost:8000` and the email server a | Hostname | `kill-the-newsletter.com` | | Backups | Enable | + **Firewall** + + | | | | + | ------------- | ------------------------- | --------- | + | Name | `kill-the-newsletter.com` | | + | Inbound Rules | SSH | 22 | + | | HTTP | 80 | + | | HTTPS | 443 | + | | Custom | 25 (SMTP) | + + **Floating IP** + 3. Configure DNS in Namecheap: | Type | Host | Value | diff --git a/src/index.tsx b/src/index.tsx index 649e889..ea24d04 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -35,7 +35,7 @@ export const webServer = express() ) ); }) - .listen(8000, "localhost"); + .listen(8000); export const emailServer = new SMTPServer({ disabledCommands: ["AUTH", "STARTTLS"],