web-dev-qa-db-ja.com

Flask Apacheとmod_wsgiを使用したhello worldはwebroot内のファイルのみを表示します

Wsgiを使用して、Apache2でflaskサイトから基本的なhello.pyを実行しようとしています。私のコードは次のようになります。

/var/www/flask_dev/hello.py

_from flask import Flask
app = Flask(__name__)

@app.route('/')
def hello_world():
    return 'Hello World!'

if __name__ == '__main__':
    app.run()
_

/var/www/flask_dev/start.wsgi

_from hello import app as application

import sys
sys.stdout = sys.stderr
_

/etc/Apache2/sites-available/flask_dev.conf

_#Listen 80
ServerName example.com

<VirtualHost *:80>
    # The ServerName directive sets the request scheme, hostname and port that
    # the server uses to identify itself. This is used when creating
    # redirection URLs. In the context of virtual hosts, the ServerName
    # specifies what hostname must appear in the request's Host: header to
    # match this virtual Host. For the default virtual Host (this file) this
    # value is not decisive as it is used as a last resort Host regardless.
    # However, you must set it for any further virtual Host explicitly.
    #ServerName www.example.com

    ServerAdmin webmaster@localhost
    #ServerName example.com

    WSGIDaemonProcess hello user=<myuser> group=<myusersgroup> threads=5 python-path=/var/www/flask_dev

    WSGIScriptAlias / /var/www/flask_dev/start.wsgi
    <Directory /var/www/flask_dev>
           WSGIProcessGroup hello
           WSGIApplicationGroup %{GLOBAL}
           Order deny,allow
           Allow from all
    </Directory>

    # Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
    # error, crit, alert, emerg.
    # It is also possible to configure the loglevel for particular
    # modules, e.g.
    #LogLevel info ssl:warn

    ErrorLog ${Apache_LOG_DIR}/error.log
    CustomLog ${Apache_LOG_DIR}/access.log combined

    # For most configuration files from conf-available/, which are
    # enabled or disabled at a global level, it is possible to
    # include a line for only one particular virtual Host. For example the
    # following line enables the CGI configuration for this Host only
    # after it has been globally disabled with "a2disconf".
    #Include conf-available/serve-cgi-bin.conf
</VirtualHost>

# vim: syntax=Apache ts=4 sw=4 sts=4 sr noet
_

/ etc/hosts

_127.0.0.1    example.com
_

_Sudo a2ensite flask_dev_とSudo service Apache2 reload (or restart)を実行した後、_www.example.com_に移動すると、Webルートのファイルが表示されます。 ~~エラーログを確認しましたが、mod_wsgiとmod_pythonが起動しているようです。誰かが他に何が欠けているか知っていますか?~~

編集1エラーログからメッセージを確認できるようになりました https:// bugsの影響を受けているようです.launchpad.net/ubuntu/+ source/libapache2-mod-python/+ bug/1073147 Ubuntu 12.04の場合。

後で正しいPython=バージョンに再コンパイルして、エラーが修正されるかどうかを確認します。今のところ、このエラーが発生している間、example.comにアクセスすると、リストされているファイルがまだ表示されます。

エラーログ

_[Mon Jan 13 11:28:06 2014] [notice] caught SIGTERM, shutting down
[Mon Jan 13 11:28:07 2014] [error] python_init: Python version mismatch, expected '2.7.2+', found '2.7.3'.
[Mon Jan 13 11:28:07 2014] [error] python_init: Python executable found '/usr/bin/python'.
[Mon Jan 13 11:28:07 2014] [error] python_init: Python path being used '/usr/lib/python2.7/:/usr/lib/python2.7/plat-linux2:/usr/lib/python2.7/lib-tk:/usr/lib/python2.7/lib-old:/usr/lib/python2.7/lib-dynload'.
[Mon Jan 13 11:28:07 2014] [notice] mod_python: Creating 8 session mutexes based on 6 max processes and 25 max threads.
[Mon Jan 13 11:28:07 2014] [notice] mod_python: using mutex_directory /tmp 
[Mon Jan 13 11:28:07 2014] [warn] mod_wsgi: Compiled for Python/2.7.2+.
[Mon Jan 13 11:28:07 2014] [warn] mod_wsgi: Runtime using Python/2.7.3.
[Mon Jan 13 11:28:07 2014] [notice] Apache/2.2.22 (Ubuntu) mod_python/3.3.1 Python/2.7.3 mod_wsgi/3.3 configured -- resuming normal operations
_

編集213.04に更新すると、バージョン情報が解決されました。 example.comにアクセスすると、403 forbiddenエラーが発生します。 error.logを追跡すると、次のようになります。

_[Mon Jan 13 21:03:41.464815 2014] [:error] [pid 10999:tid 3014634304] [client 127.0.0.1:35067] Attempt to invoke directory as WSGI application: /var/www/flask_dev/
_

私はフラスコ_dev.confに_AddHandler cgi-script py_を追加しようとしましたが、それもうまくいかないようです。

誰かが以前にWSGIアプリケーションでこの種のエラーを経験し、これの回避策を知っていますか?

前もって感謝します。

編集3すべてのソースコードが機能するようになりました

13
David

/var/www/flask_dev/hello.wsgiで、assではなくappをインポートする必要があります。次に、スクリプトの保存にDocumentRootを使用しないでください。 DocumentRootは静的ファイルを格納するためのものなので、ファイルとしてリストされ、スクリプトとして実行されることはありません。

使ってみてください

    WSGIScriptAlias / /var/www/flask_dev/hello.wsgi
    <Directory "/var/www/flask_dev">
       WSGIProcessGroup hello
       WSGIApplicationGroup %{GLOBAL}
       Order deny,allow
       Allow from all
    </Directory>

this ページを確認してください。

19
Akilesh