Hi everyone! I'm new here so go easy on me will yea 
I've been using ezjail's and so far everything's worked successfully. I've created the following jails with the following programs inside 'em:
10.0.0.1 - SSH
10.0.0.2 - mysql
10.0.0.3 - lighttpd
10.0.0.4 - php
10.0.0.5 - archives (all web sites will go here)
(It's important to note each jail can access the internet)
And now my question is how do I make some of the jails communicate with each other? Here is what I wanted:
lighttpd -> access -> php
lighttpd -> access -> archives (load websites)
lighttpd -> access -> mysql
etc
etc
I can't seem to find any tutorials that would help; moreover, I tried editing the /usr/local/etc/lighttpd.conf file under fastcgi module and I changed so it looks like:
Unfortunately it didn't work, the lighttpd.error.log basically told me that it didn' work lol. Sorry but I'm kinda' at my wits end, could someone help me? Thanks so much!!

I've been using ezjail's and so far everything's worked successfully. I've created the following jails with the following programs inside 'em:
10.0.0.1 - SSH
10.0.0.2 - mysql
10.0.0.3 - lighttpd
10.0.0.4 - php
10.0.0.5 - archives (all web sites will go here)
(It's important to note each jail can access the internet)
And now my question is how do I make some of the jails communicate with each other? Here is what I wanted:
lighttpd -> access -> php
lighttpd -> access -> archives (load websites)
lighttpd -> access -> mysql
etc
etc
I can't seem to find any tutorials that would help; moreover, I tried editing the /usr/local/etc/lighttpd.conf file under fastcgi module and I changed so it looks like:
Code:
fastcgi.server = ( ".php" =>
( "10.0.0.4" =>
( "socket" => "/var/run/lighttpd/php-fastcgi.socket",
"bin-path" => "/usr/local/bin/php-cgi-cgi"
)
)