I have a program (motion) that serves a web page showing a live camera feed. I want to make that feed available via internet, but using SSL and a certificate so the feed can only be seen by those that have the apporpiate certificate. What I want to know: Is there something like a proxy that read from the server, and serve a SSL version of it?
|
|
|||||
|
closed as too localized by Michael Mrozek♦ Aug 13 '11 at 0:09
This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.
|
SSL certificates do not provide the kind of security you are looking for. They are made to prove to the user that the server is who it claims to be, not prove to the server that the user is authenticated. SSL also secures the wire from eaves-dropping, but it does not limit users. Any users that wants to read the page can if they ignore the warning about the certificate not being present. You should look into simple password protection or digest authentication mechanisms. Does your camera feed not provide that already? There are lots of proxy servers ( |
|||
|