> But it still give me a 404 error when i go to http://192.168.1.5/ipcam/
I guess your problem is: Cherokee forwards your request to the backend as is. That means it will actually request http://192.168.1.3/ipcam/ You probably want it to request http://192.168.1.3/ (without /ipcam) instead. To achieve that, there is some rewriting involved. Try adding a new URL rewriting regex on your reverse proxy handler: ^/ipcam(.*) -> $1 That will remove the /ipcam part before requesting it from the backend. _______________________________________________ Cherokee mailing list [email protected] http://lists.octality.com/listinfo/cherokee
