key-networks / ztncui

ZeroTier network controller UI
GNU General Public License v3.0
1.56k stars 230 forks source link

HTTP mode #23

Closed makarov-roman closed 4 years ago

makarov-roman commented 4 years ago

Hi, version: 537a567e29da8ccc83a473b327674b149b5a6419 npm start causing Error: ENOENT: no such file or directory, open 'etc/tls/fullchain.pem' can I somehow to start without having cert?

Thanks

key-networks commented 4 years ago

Unfortunately not the way the code exists currently. The easiest workaround is to execute this in the src directory: openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout etc/tls/privkey.pem -out etc/tls/fullchain.pem

makarov-roman commented 4 years ago

I see. I'm perfectly okay with this . Thanks for the response.