gunicornで起動させる 実行させたいflaskのファイルがあるディレクトリで、以下のコマンドを実行します。 -wは、--workersの省略形で、ワーカープロセス数を指定できる。 -bは、--bindの省略形で、gunicornのアドレスと待受け(Listen)ポートを指定できる。 index.pyのappというアプリケーションを実行します。 # gunicorn -w 1 -b 0.0.0.0:80 index:app 2022年09月18日 15:52:49 +0000] [30] [INFO] Starting gunicorn 20.1.0 [2022年09月18日 15:52:49 +0000] [30] [INFO] Listening at: http://0.0.0.0:80 (30) [2022年09月18日 15:52:49 +0000] [30] [INFO] Usi