Сайт mydomain.ru выполнил переадресацию слишком много раз.
Удалите файлы cookie..
ERR_TOO_MANY_REDIRECTS
app.all('*', (req, res) => {
res.redirect(301, 'https://' + (''+req.headers.host).split(':')[0] + ':' + PORT_HTTPS + req.url)
res.end();
});
app.listen(PORT);
http.createServer(function (req, res) {
res.writeHead(301, { 'Location': 'https://' + req.headers.host + ':' + PORT_HTTPS + req.url });
res.end();
}).listen(PORT);
httpsServer.listen(PORT_HTTPS, () => console.log('HTTPS on ' + PORT_HTTPS));
nodemon app.js
)отправить код модуля в репозиторий nmp без интернета