Node js Host on IIS and Email setup
React js Host ON IIS--
https://dev.to/sumitkharche/how-to-deploy-react-application-on-iis-server-1ied
1. Installed IIS Node -https://github.com/azure/iisnode/wiki/iisnode-releases
https://github.com/tjanczuk/iisnode/releases
iisnode-core-v0.2.21-x64
https://sourceforge.net/projects/iisnode.mirror/
2. Install URL Rewrite --https://www.iis.net/downloads/microsoft/url-rewrite
3. Install Application Request Routing extension. https://www.iis.net/downloads/microsoft/application-request-routing
4, add web.config
https://stackoverflow.com/questions/36351431/iisnode-on-windows-7-iis-7-5-throwing-500-19-error
https://harveywilliams.net/blog/installing-iisnode
For More information:https://dev.to/petereysermans/hosting-a-node-js-application-on-windows-with-iis-as-reverse-proxy-397b
SMTP-Email Setup
https://stackoverflow.com/questions/55167741/nodemailer-ms-exchaneg-server-error-unable-to-verify-the-first-certificate
this.transporter = nodemailer.createTransport({
host: '******info',
port:25,
secure: false,
auth: {
user: '***tra.com',
pass: '*********'
},
tls: {rejectUnauthorized: false}
});
// verify connection configuration
this.transporter.verify((error: null, success: null) => {
if (error) {
console.log(error);
} else {
console.log("SMTP email server is ready...");
}
});
Comments
Post a Comment