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"],