- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我很难使用 Flask-Restplus 部署 Flask 应用程序。
在 http://localhost:5000/api 本地工作 (wezkrug) 时一切正常
但是当我使用 nginx + uwgsi 在计算机中部署我的应用程序时,在访问 http://example.com/api 时,我不断收到来自服务器的 404 响应...
看起来 Flask-Restplus 正在为 Swagger 使用 swaggerui...我是否必须在 nginx.conf 中添加一些内容来提供此服务?原谅我的无知,但我以前没有使用过 nginx 的经验
这就是我声明包含 API 的蓝图的方式
# Configure the Blueprint for API
blueprint = Blueprint('api', __name__, url_prefix='/api')
api.init_app(blueprint)
api.add_namespace(programs_namespace)
api.add_namespace(students_namespace)
app.register_blueprint(blueprint)
这是我的 nginx 配置,位于/etc/ngingx/conf.d/mysite.conf
server {
listen 80;
server_name _;
client_max_body_size 400M;
location / {
auth_basic "Restricted";
auth_basic_user_file htpasswd;
try_files $uri @app;
}
location /static/ {
root /home/mysite/mysite/portal/src/portal;
access_log off;
error_page 404 = @app;
expires 7d;
}
location @app {
include uwsgi_params;
uwsgi_pass 127.0.0.1:5000;
access_log /var/log/nginx/mysite_access.log main;
error_log /var/log/nginx/mysite_error.log warn;
}
}
# SSL Server
server {
listen 443 default_server ssl;
client_max_body_size 400M;
ssl_certificate /etc/nginx/conf.d/mysite.crt;
ssl_certificate_key /etc/nginx/conf.d/mysite.key;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
keepalive_timeout 70;
location / {
auth_basic "Restricted";
auth_basic_user_file htpasswd;
try_files $uri @app;
}
location /static/ {
root /home/mysite/mysite/portal/src/portal;
access_log off;
error_page 404 = @app;
expires 7d;
}
location @app {
include uwsgi_params;
uwsgi_pass 127.0.0.1:5000;
access_log /var/log/nginx/mysite_access.log main;
error_log /var/log/nginx/mysite_error.log warn;
}
}
我必须说,当我尝试访问http://example.com/api时我在日志文件中根本没有得到任何输出。
该应用程序是通过使用 uwgsi 的 init 脚本运行的,您可以在此处查看内容:
mysite_dir=${mysite_DIR-/home/mysite/mysite/portal/src/portal}
pidfile=${PIDFILE-/var/run/mysite/mysite.pid}
uwsgi_bin=/usr/local/bin/uwsgi
uwsgi_url=127.0.0.1:5000
uwsgi_app=uwsgiapp
uwsgi_parameters="-p 4 -M -t 300"
logfile=${LOGFILE-/var/log/mysite.log}
user=mysite
chk_pidfolder() {
[ -d "${pidfile%/*}" ] || install -o $user -g $user -d "${pidfile%/*}"
}
start() {
log_daemon_msg "Starting mysite"
start-stop-daemon --start -c $user -g $user --pidfile $pidfile --exec $uwsgi_bin -- --chdir $mysite_dir --pidfile $pidfile -s $uwsgi_url -w $uwsgi_app $uwsgi_parameters -d $logfile --callable app --enable-threads --post-buffering 4096
log_end_msg $?
}
stop () {
log_daemon_msg "Stopping mysite"
if [ -e "$pidfile" ]; then
pid=`cat "$pidfile"`
else
pid=`pidofproc $uwsgi_bin`
fi
kill $pid
stopped=false
for ((i=0; i<10; i++)); do
if [ -d /proc/$pid ]; then
printf "."
sleep 2
else
stopped=true
break
fi
done
if $stopped ; then
rm -f $pidfile
log_end_msg 0
else
kill -6 $pid
log_warning_msg "no success, attempted to kill the process with -6, manual check recommended"
fi
}
case "$1" in
start)
chk_pidfolder
start
;;
stop)
stop
;;
status)
log_daemon_msg "Status of mysite"
status_of_proc -p $pidfile $uwsgi_bin mysite
# if [ $? -eq 0 ]; then
# log_end_msg 0
# exit 0
# else
# log_end_msg 1
# exit 1
# fi
;;
restart)
log_daemon_msg "Restarting mysite"
stop
sleep 4
start
;;
*)
echo $"Usage: $prog {start|stop|restart}"
exit 2
;;
esac
exit 0
谢谢!
最佳答案
如 Flask's documentation 中所述,您可能想要使用 ProxyFix + 对 nginx 配置进行一些修改。
在您的应用程序代码中,您可能想要执行以下操作:
# Configure the Blueprint for API
blueprint = Blueprint('api', __name__, url_prefix='/api')
api.init_app(blueprint)
api.add_namespace(programs_namespace)
api.add_namespace(students_namespace)
app.register_blueprint(blueprint)
# Here we patch the application
from werkzeug.contrib.fixers import ProxyFix
app.wsgi_app = ProxyFix(app.wsgi_app)
那么你的 nginx 配置必须如下:
server {
listen 80;
server_name _;
client_max_body_size 400M;
location / {
auth_basic "Restricted";
auth_basic_user_file htpasswd;
try_files $uri @app;
}
location /static/ {
root /home/mysite/mysite/portal/src/portal;
access_log off;
error_page 404 = @app;
expires 7d;
}
location @app {
include uwsgi_params;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
uwsgi_pass 127.0.0.1:5000;
access_log /var/log/nginx/mysite_access.log main;
error_log /var/log/nginx/mysite_error.log warn;
}
}
# SSL Server
server {
listen 443 default_server ssl;
client_max_body_size 400M;
ssl_certificate /etc/nginx/conf.d/mysite.crt;
ssl_certificate_key /etc/nginx/conf.d/mysite.key;
ssl_protocols SSLv2 SSLv3 TLSv1;
ssl_ciphers ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP;
ssl_prefer_server_ciphers on;
keepalive_timeout 70;
location / {
auth_basic "Restricted";
auth_basic_user_file htpasswd;
try_files $uri @app;
}
location /static/ {
root /home/mysite/mysite/portal/src/portal;
access_log off;
error_page 404 = @app;
expires 7d;
}
location @app {
include uwsgi_params;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
uwsgi_pass 127.0.0.1:5000;
access_log /var/log/nginx/mysite_access.log main;
error_log /var/log/nginx/mysite_error.log warn;
}
}
关于python - 如何使用 nginx + uwsgi 部署 Flask-restplus 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40684249/
我正在尝试使用 unicorn 运行 Restplus Flask API,但我不断收到此错误: Application object must be callable. 我正在使用 sqlalche
使用 python flask_restplus什么是发布和获取方法的正确方法来获取和推送文件,例如xlsx 到服务器? marshaling需要为此使用吗? 引用:https://philsturg
有什么办法可以对Namespace进行排序吗?条目添加到 Api 之后? 我正在关注文档,流程(AFAIK)似乎是: a) 创建 API: api = Api(version="1.0",
如何使用 Flask restplus 设置路径变量的默认值? 例如,使用以下内容: @api.route('/calendars/coordinates///years/') class Daily
我用 flask-restplus 制作了 api 服务器. 在使用它时,我注意到它可能必须进行版本控制才能扩大规模。 所以引用文档,我发现命名空间和蓝图是可用的。 首先,像这样的文件结构。 /app
所以我在 Flask RestPlus 中有这个模型: NS = Namespace('parent') PARENT_MODEL = NS.model('parent', { 'parent
在 Flask-Restplus 中,我需要对一个属性值建模,该属性值可能是字符串列表或对象列表。 它可以是这样的: { 'my_attribute': [ 'value1'
我正在使用 python 3.4。 我创建了一个 enum 类型,如下所示: import enum class EnumGender(enum.Enum): blank = ' '
我编写了一个提供 API 的 Flask 应用程序。我正在使用 RESTplus 库。 我使用一个模型来格式化数据。如果请求成功,则将值插入模型并返回模型。但是,如果请求不成功,则返回模型并且所有值为
我正在尝试使用 Flask-Restplus 制作一个 api 并用 swagger 记录它。 这是我目前所拥有的,它工作正常,除了我不知道如何添加根路由。 from flask import Fla
我很好奇如何从 Flask-RESTPlus 中的 GET 方法获取查询参数。我没有设法在文档中找到示例。 我以前使用过纯 flask ,我的做法是从 flask 库中调用“request.args.
我在将装饰器应用于我的 Resource 时遇到问题. Api decorators参数被应用于每个资源函数或者我如何理解 decorators范围?我的装饰器只在启动时应用,而不是在每次函数调用时应
我正在使用 Flask Rest-plus 模型来验证 POST 有效负载,但是如果存在任何额外/未知字段,我希望模型出错。 正在使用的型号: interface_config = api.model
我正在使用python flask创建REST API。 API已准备就绪,并且可以在我的本地主机的端口号8000上使用。现在,我打算为该REST API提供一个用户友好的界面,为此我决定使用pyth
我正在尝试从Flask-RESTplus获得Swagger UI,并在使用Nginx作为代理的服务器上工作。 Swagger在/ api上提供服务,并使用http://localhost:5000/a
目前命名空间解析器验证请求参数并抛出错误 { "errors": { "file": "Missing required parameter in an uploaded fi
给定这个 Flask Restplus 应用程序: from flask import Blueprint, Flask from flask_restplus import Api, Resourc
我正在尝试使用 Flask-RESTPlus 0.10.1 创建一个自定义字段来验证我的 API 中的 POSTed JSON 下面是基本设置... from flask_restplus impor
除了能够使用 Swagger UI 自动为我们的 API 生成交互式文档之外,使用 Flask-RESTplus 还有什么真正的优势吗?超过Flask-RESTful ? 最佳答案 我都使用过,我们切
我有一个 Flask REST API。我用healthcheck.EnvironmentDump以便轻松转储我的服务运行的环境。是否可以将端点添加到 Restplus 生成的 Swagger 文档中
我是一名优秀的程序员,十分优秀!