I have a nearly simliar problem.
Mjpeg-stream works fine and stream at port 8080.
The mod_proxy ist installed and worked for "motion" from early times. So i reconfigured it as below:
Code: Select all
ProxyRequests Off
<Proxy *>
AddDefaultCharset off
Order deny,allow
Allow from all
</Proxy>
ProxyVia On
ProxyPass /webcam http://192.168.1.xxx:8080
# xxx=IP from raspi
-
If i type 192.168.1.xxx/webcam i see a page with the "broken picture"-icon - the stream does not start.
if i type 192.168.1.xxx:8080 i can see the "broken picture"-icon for 1 second and then i can see the streaming video.
the sourcecode of both pages is the same!
It makes no differenz what browser i use, or if i try to reach it inside my LAN or from outside - all the same effect.
Whats running wrong with Apache2 here, please?