chovanecm / sacredboard

Dashboard for sacred. Monitor and access your past machine learning experiments.
MIT License
184 stars 39 forks source link

Password protected sacredboard #104

Open Gonzalo933 opened 5 years ago

Gonzalo933 commented 5 years ago

Hello,

I want to start using sacredboard in my own server so I don't have to launch it everyday in my laptop and I would just need to open a URL. The thing is that this URL is public and anyone could delete or see my experiments. I think an interesting feature to add will be a password input screen before showing the actual sacredboard, this password could either be stored in a file, in the DB or set with the command line options.

chovanecm commented 5 years ago

Hola,

if I understand it correctly you want to have Sacredboard running on a public server while preventing other users than you from accessing it.

If I added a password screen, I would also have to add support for encryption (HTTPS), because the password you would enter would travel over the Internet in plain text otherwise and anybody could intercept it.

While the above-mentioned option is possible, I think it might be easier for you to run a reverse proxy on your server, which would

Does it make sense? :)