This commit is contained in:
Leandro Facchinetti 2020-03-22 03:34:55 -04:00
parent 2ca2350d16
commit 35a965ddab
2 changed files with 13 additions and 1 deletions

View File

@ -46,6 +46,18 @@ The web server will be running at `http://localhost:8000` and the email server a
| Hostname | `kill-the-newsletter.com` | | Hostname | `kill-the-newsletter.com` |
| Backups | Enable | | 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: 3. Configure DNS in Namecheap:
| Type | Host | Value | | Type | Host | Value |

View File

@ -35,7 +35,7 @@ export const webServer = express()
) )
); );
}) })
.listen(8000, "localhost"); .listen(8000);
export const emailServer = new SMTPServer({ export const emailServer = new SMTPServer({
disabledCommands: ["AUTH", "STARTTLS"], disabledCommands: ["AUTH", "STARTTLS"],