Change listen address and port

This commit is contained in:
MMaker 2025-01-31 13:50:10 -05:00
parent b766455ac6
commit ea9653a5be
Signed by: mmaker
GPG Key ID: CCE79B8FEDA40FB2

2
app.py
View File

@ -58,4 +58,4 @@ def proxy(video_id):
return Response(html_response, mimetype="text/html")
if __name__ == "__main__":
app.run(host="0.0.0.0", port=5000, debug=False)
app.run(host="127.0.0.1", port=2525, debug=False)