user1394913
user1394913

Reputation: 1

Lighttpd proxy ip address

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

Answers (1)

Kinetic
Kinetic

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

Related Questions