Switch to Port 80 using authbind for non-root access

This commit is contained in:
Gemini Bot
2026-01-20 13:12:34 +00:00
parent bf1241850b
commit 6e2a9d5b2e
3 changed files with 16 additions and 3 deletions

3
app.py
View File

@@ -73,4 +73,5 @@ def restart_miner():
if __name__ == '__main__':
# Run on all interfaces
app.run(host='0.0.0.0', port=5000, debug=True)
# Port 80 requires authbind or root
app.run(host='0.0.0.0', port=80, debug=True)