Skip to main content

Node-RED - Installation unter Debian 13 (Trixie)

https://nodered.org/docs/getting-started/raspberrypi

sudo apt install build-essential git curl sudo ssl-cert

bash <(curl -sL https://github.com/node-red/linux-installers/releases/latest/download/install-update-nodered-deb)

usermod -aG sudo nodered

 

Enable HTTPS in .node-red/settings.js)

    https: function() {
        // This function should return the options object, or a Promise
        // that resolves to the options object
        return {
            key: require("fs").readFileSync('/etc/ssl/private/ssl-cert-snakeoil.key'),
            cert: require("fs").readFileSync('/etc/ssl/certs/ssl-cert-snakeoil.pem')
        }
    },
     
    httpsRefreshInterval : 12,
         
    requireHttps: true,


usermod -aG ssl-cert nodered