Reputation: 1
can i use a proxy for my lighttpd
server like change the ip address or port forward on two different computers, i have At&t uverse.
Upvotes: 0
Views: 513
Reputation: 1744
Yes you can, adding the following to a lighttpd.conf will redirect all requests for php files onto 192.168.0.10 port 80.
proxy.server = (
".php" => (
(
"host" => "192.168.0.10",
"port" => 80
)
)
)
Hope that helps
Upvotes: 1