Arc Forumnew | comments | leaders | submitlogin
4 points by drcode 5751 days ago | link | parent

Could be you don't have unix permissions on port 80. I think it's common on Unices for non root users to have limited access to low numbered ports. Maybe try running mzscheme with sudo?


1 point by rincewind 5751 days ago | link

I think this is the problem.

But running your webserver as root is a huge security risk. If your app is ever exploited, your whole system will be compromised.

try this instead and run your server on port 8080 http://en.wikipedia.org/wiki/Iptables#Redirection_example

-----

1 point by drcode 5751 days ago | link

I agree it's a security risk- Trying "sudo" would be a way to diagnose the problem but not a permanent solution.

-----