简体   繁体   English

在Apache上运行Flask-CentOS

[英]Running Flask on Apache - CentOS

I setup a very simple flask application to test a deployment in Apache on CentOS 6 but I'm getting the follow error: 我设置了一个非常简单的flask应用程序,以在CentOS 6上的Apache中测试部署,但是出现以下错误:

[Sat Apr 26 12:44:20 2014] [error] mod_wsgi (pid=29782): Target WSGI script '/var/www/html/sites/rtdsllc/rtdsllc.wsgi' cannot be loaded as Python module.
[Sat Apr 26 12:44:20 2014] [error] mod_wsgi (pid=29782): Exception occurred processing WSGI script '/var/www/html/sites/rtdsllc/rtdsllc.wsgi'.
[Sat Apr 26 12:44:20 2014] [error] Traceback (most recent call last):
[Sat Apr 26 12:44:20 2014] [error] File "/var/www/html/sites/rtdsllc/rtdsllc.wsgi", line 10, in <module>
[Sat Apr 26 12:44:20 2014] [error]     from rtdsllc import app as application
[Sat Apr 26 12:44:20 2014] [error] ImportError: cannot import name app

This is my wsgi file: 这是我的wsgi文件:

activate_this = '/var/www/virtualenvs/default/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))

path = '/var/www/html/sites/rtdsllc'

import sys
if path not in sys.path:
    sys.path.append(path)

from rtdsllc import app as application

Here is my virtual host config: 这是我的虚拟主机配置:

WSGISocketPrefix run/wsgi

<VirtualHost *:8086>

    WSGIDaemonProcess rtdsllc user=apache group=apache threads=5
    WSGIScriptAlias /test /var/www/html/sites/rtdsllc/rtdsllc.wsgi

    ErrorLog logs/rtdsllc-error_log
    CustomLog logs/rtdsllc-access_log common

    <Directory /var/www/html/sites/rtdsllc/rtdsllc>
        WSGIProcessGroup rtdsllc
        WSGIApplicationGroup %{GLOBAL}
        Order deny,allow
        Allow from all
    </Directory>
</VirtualHost>

Here is my flask application: 这是我的烧瓶应用程序:

from flask import Flask, render_template

app = Flask(__name__)      

@app.route('/')
def home():
  return render_template('index.html')

if __name__ == '__main__':
  app.run(debug=False)

And finally here is my folder structure: 最后是我的文件夹结构:

rtdsllc/
├── rtdsllc
│   ├── __init__.py
│   ├── routes.py
│   ├── static
│   │   ├── css
│   │   ├── img
│   │   └── js
│   └── templates
│       ├── base.html
│       └── index.html
└── rtdsllc.wsgi

What gives? 是什么赋予了? I've tried various combinations of settings to no avail. 我尝试了各种设置的组合都无济于事。 What is the proper way of setting up a Flask app in apache? 在Apache中设置Flask应用的正确方法是什么?

EDIT 编辑

ls -las rtdsllc/rtdsllc : ls -las rtdsllc/rtdsllc

4 drwxr-xr-x. 4 apache apache 4096 Apr 26 13:07 .
4 drwxr-xr-x. 3 apache apache 4096 Apr 25 22:54 ..
0 -rw-r--r--. 1 apache apache    0 Apr 25 20:57 __init__.py
4 -rw-r--r--. 1 apache apache  134 Apr 25 22:55 __init__.pyc
4 -rw-r--r--. 1 apache apache  190 Apr 26 12:48 routes.py
4 -rw-r--r--. 1 apache apache  521 Apr 26 13:07 routes.pyc
4 drwxr-xr-x. 5 apache apache 4096 Apr 25 20:14 static
4 drwxr-xr-x. 2 apache apache 4096 Apr 25 20:19 templates

In doing: 这样做:

from rtdsllc import app as application

it will be importing: 它将导入:

rtdsllc/rtdsllc/__init__.py

According to your directory listing: 根据您的目录列表:

0 -rw-r--r--. 1 apache apache    0 Apr 25 20:57 __init__.py

that file is empty and has not 'app' object in it to drag in via the import. 该文件为空,并且其中没有“ app”对象可通过导入进行拖动。

Which file is the following in? 以下是哪个文件?

app = Flask(__name__)  

Right now it isn't in the place that you are trying to import it from. 现在,它不在您尝试从中导入的位置。


UPDATE 1 更新1

Use: 采用:

from rtdsllc.routes import app as application

if you 'app' object is in 'rtdsllc.routes'. 如果您的“ app”对象位于“ rtdsllc.routes”中。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM