WSGI exception - port block

I probably should go to Server Fault with this, but I don’t know how to fix the problem exactly, it seems that port 80 on my machine (Xubuntu 9.10) is blocked by something, the only key I have is this:

Django version 1.2.3, using settings 'settings'
Development server is running at http://0.0.0.0:80/
Quit the server with CONTROL-C.
Error: You don't have permission to access that port.

Maybe someone stumbled on something similar in the past?

+3
source share
1 answer

"Error: you do not have permission to access this port"

In the bottom line. You do not have access.

Port 80 requires a privileged process such as Apache. The embedded server with Django is not privileged and should not be used for anything other than development.

+5
source

Source: https://habr.com/ru/post/1794249/


All Articles