The problem is in my setting, because I am accessing localhost.
When I execute in terminal:
curl http://localhost
The response is:
curl: (52) Empty reply from server
But it should say:
curl: (7) Failed to connect to localhost port 80: Connection refused
UPDATE:
When I execute
curl http://localhost:3000
The response is:
curl: (7) Failed to connect to localhost port 3000: Connection refused
UPDATE(2)
sudo lsof -i :80
COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
acwebseca 42015 root 36u IPv4 0x2e120362d0318e9b 0t0 TCP
192.168.0.109:52299->151.101.129.69:http (ESTABLISHED) ...
Do you have any ideas ?