|
|
Question : CGI - PL Web Mirror
|
|
Hi, I need a CGI script to be able to mirror an IP anddress and port if possible. Does anyone know where I can find oen that is easy to set up?
Here is the thing, I have this IP (63.168.32.34) and this port (8087) that when combined into (http://63.168.32.34:8087) is basically a VNC server over a Java Interface. I want to point a subdomain (gate.kellycraig.net) to go to this IP and port.
Sure I could just use a re-direct, but I need the URL to say (gate.kellycraig.net) and pointing the subdomain to that IP isnt possible at this time for me. So if I can get an easy CGI script that will get http://63.168.32.34:8087 and bring it back to gate.kellycraig.net, then ill be good.
Anyone knwo where I can find one?
|
Answer : CGI - PL Web Mirror
|
|
#!/usr/bin/perl print "Content-type: text/html\n\n"; print <
EOF
|
|
|
|
|