Flask - Deployment
Which of the following is the correct syntax to run a Flask app named
app using uWSGI with 4 workers on port 8080?app using uWSGI with 4 workers on port 8080?--http :8080. The Flask app is specified with --module app:app. Number of workers is set with --processes 4.--wsgi-file without --callable app, assuming default 'application' callable instead of 'app'. uwsgi --http 8080 --module app:app --workers 4 uses --workers which is invalid; uWSGI uses --processes. uwsgi --socket 8080 --module app --workers 4 uses --socket without HTTP, which is not the question's requirement.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions