You can reverse proxy with apache.

An example with apache with a local ffserver .

<VirtualHost *:80>
        ServerName streaming.mydomain.tld

        DocumentRoot "/home/streaming/htdocs"

        <Location />
                ProxyPass http://localhost:8090/
        </Location>

        <Directory "/home/streaming/htdocs">
                AllowOverride None

                Order allow,deny
                Allow from all
        </Directory>
</VirtualHost>

HTH

Antonio Bardazzi
Multicore Sistemi

Matt Farley ha scritto:
Is there some way to secure an ffserver webcam stream using Apache / HTTP
Authentication? Some type of Apache proxy perhaps?

Right now I have it so only machines on the LAN can view the
http://webcam/stream.mjpg, but I want people from the outside to be able to
access it if they provide a username / pw (HTTP Auth, which isn't built into
ffserver).

Thanks!

Matt

_______________________________________________
ffserver-user mailing list
ffserver-user@mplayerhq.hu
https://lists.mplayerhq.hu/mailman/listinfo/ffserver-user

Reply via email to