Try port scan your network assigned IP and not 127.0.0.1. If something listens on 192.168.0.10:8080 for example, which is not 127.0.0.1, it will block requests for listening on "all interfaces" (0.0.0.0) which Nginx is trying to do, because one or more interface is in use for that port.
netstat -ln Will tell you all listening ports and interfaces on most OS and is always preferred over port scans as its direct information that does not rely on successful connection that a firewall may block. Hope it helps Jason > On 20 Apr 2015, at 18:54, daBee <[email protected]> wrote: > > Hi there. This is my port scan from 8000 to 8080: > > Port Scan has started… > > Port Scanning host: 127.0.0.1 > > Port Scan has completed… > > > I've never set anything up to use that port. > > > Styopa Semenukha Wrote: > ------------------------------------------------------- >> You already have an application listening on port 8080. You can find >> it using >> netstat(1). > > Posted at Nginx Forum: > http://forum.nginx.org/read.php?2,258229,258233#msg-258233 > > _______________________________________________ > nginx mailing list > [email protected] > http://mailman.nginx.org/mailman/listinfo/nginx _______________________________________________ nginx mailing list [email protected] http://mailman.nginx.org/mailman/listinfo/nginx
