I was given SSH access to a fedora server in which I have cloned a flask application. After setting up a python environment and installing the app python modules I'm able to run the application from terminal with:
python3 run.py
And from my browser I can see the app running from url:
http://someurl.com:5000/
I understand Werkzeug's server is only meant for development, but I'm not finding specific information for deployment on a fedora server.
Is nginx a good option?
How do I deploy my flask app on a fedora server.?