Raised on Axure server CentOs. For training purposes, installed ligthtpd. Launched it. enter image description here

Through the portal opened port 80 enter image description here In the machine itself, the port is open enter image description here but the default page does not open. What have I done wrong?

  • You are probably accessing the ipv4 protocol. and the program, judging by the picture above (by the way, it’s better to provide textual information in the form of text, not pictures: it is more convenient to read, and search engines will index it), only ipv6 is listening. - aleksandr barakin

1 answer 1

Add the following settings to the LightHttpd configuration:

# listen to ipv4 server.bind = "0.0.0.0" server.port = "80" # listen to ipv6 $SERVER["socket"] == "[::]:80" { }