This commit is contained in:
parent
1ed63f27ad
commit
5673b0102b
|
@ -9,7 +9,7 @@ module.exports = async (require) => {
|
||||||
);
|
);
|
||||||
|
|
||||||
webApplication.set("url", "https://kill-the-newsletter.com");
|
webApplication.set("url", "https://kill-the-newsletter.com");
|
||||||
webApplication.set("email", "smtp://kill-the-newsletter.com:25");
|
webApplication.set("email", "smtp://kill-the-newsletter.com");
|
||||||
webApplication.set("administrator", "mailto:kill-the-newsletter@leafac.com");
|
webApplication.set("administrator", "mailto:kill-the-newsletter@leafac.com");
|
||||||
|
|
||||||
const reverseProxy = express();
|
const reverseProxy = express();
|
||||||
|
@ -29,4 +29,8 @@ module.exports = async (require) => {
|
||||||
reverseProxy
|
reverseProxy
|
||||||
)
|
)
|
||||||
.listen(443);
|
.listen(443);
|
||||||
|
|
||||||
|
emailApplication.listen(25, () => {
|
||||||
|
console.log("Email server started");
|
||||||
|
});
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue