Hi,
I installed videocache successfully, and its caching great, but the problem is I am unable to serve my videos. As a preferred httpd, I use nginx. I have the following line for nginx, but for whatever reason I dont think its serving the videos from my videocache, even though it says "cache hit" in the videocache log.
server {
listen 127.0.0.1;
location /videocache/ {
alias /var/spool/videocache/;
access_log /logs/nginx/videocache.access.log;
}
}
Also in /etc/videocache.conf i have the following set:
cache_host = 127.0.0.1
---------->
On the lighttpd tutorial, the lady used the proxy = parameter. Should the same thing be used, or should the cache_host be sufficient. Also in regards to what should show up in the browser... what is the proper output??? should it say "Transferring from 127.0.0.1" or should it show the original place where it got the video. If its showing the original place i suspect its not serving from the cache (even though for sure it is caching, i can see the videos in the /var/spool/videocache dirs.
