前提・実現したいこと
mod_wsgiでエラーが発生しています。
Flaskで作成したモジュールをmod_wsgiでWebサーバ上で動作させたいのですが、エラーが発生し動きません。
発生している問題・エラーメッセージ
mod_wsgiをインストール後、以下コマンドを実行
mod_wsgi-express start-server run.py
以下URLにアクセス
http://localhost:8000/
以下のエラーが表示される
Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator at [no address given] to inform them of the time this error occurred, and the actions you performed just before this error. More information about this error may be available in the server error log.
該当のソースコード
run.py
python
1from app.app import app 2from bottle import route, run 3 4if __name__ == "__main__": 5 app.run(host='0.0.0.0', port=9999)
実際のモジュールは app/app.pyに配置しています。
試したこと
以下のコマンドではWebページ表示されています。
python3 run.py
補足情報(FW/ツールのバージョンなど)
Server
Amazon EC2 t2.micro
httpd -v
Server version: Apache/2.4.46 ()
flask --version
Python 3.7.9
Flask 1.1.2
Werkzeug 1.0.1
あなたの回答
tips
プレビュー