ini Flask的Nginx虚拟主机
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ini Flask的Nginx虚拟主机相关的知识,希望对你有一定的参考价值。
server {
listen 80;
server_name your_domain your_ip;
charset utf-8;
#Max upload size
client_max_body_size 75M;
location /static {
alias /data/apps/myapp/static;
}
location / {
proxy_pass http://127.0.0.1:5000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
}
以上是关于ini Flask的Nginx虚拟主机的主要内容,如果未能解决你的问题,请参考以下文章
ini docker-compose + flask + nginx + certbot nginx配置
宝塔部署flask项目
Ubuntu18部署uwsgi+flask应用
centos6.8 搭建nginx+uwsgi+Flask
ini laravel nginx虚拟主机配置
ini 使用Homebrew的OS X的Nginx虚拟主机设置