How do I get non root access to bind a socket to port 80?
I'm using python's SimpleHTTPServer but I can only bind it to port 80 as root otherwise I get an exception socket.error: (13, 'Permission denied'). How can I give a user permission to port 80?
|