Zum Hauptinhalt springen

// Website code (index.html)

 

If you are not redirected automatically, click here.

// Node.js script (server.js) const http = require('http'); const hostname = 'manuals.zubler.de'; const port = 80; http.createServer((req, res) => { res.writeHead(301, { 'Location': 'https://zubler.canto.de/v/manuals/landing?viewIndex=1' }); res.end(); }).listen(port, hostname, () => { console.log(`Server running at https://${hostname}:${port}/`); });