Hi,
You need to set username

assword as a base 64 encoded string in the request header.
Run:
Code:
echo username:password | mmencode
to get the base 64 username

assword.
Then use RequestHeader to set the authorization in the header according to the previous command output:
Code:
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
RequestHeader set Authorization "Basic <base64 username:password>"
ProxyPass / http://ipcamera.lan/
ProxyPassReverse / http://ipcamera.lan/
Note that you need to add/enable the mod_headers module in order for the above to work.
Regards