I made a webserver on my android device(using Nanohttpd). It's working fine over the port 8080 but I want to make it okay over the port 80,(I want to tape on my browser : http://192.168.x.x instead of http://192.168.x.x:8080/ ) but I'm not able to do it
This is how I call the method that creates the webserver:
httpServer = new NanoHTTPD(80,Environment.getExternalStorageDirectory());
- Can someone tell me what service is running by default over the port 80 ?
- How can i fix this problem ?