Я искал и пробовал сотни конфигов и ничего. У меня только 2 маршрута, "/" и "/ search /". Сайт нормально загружается в / location, но когда я нажимаю в img, чтобы выполнить поиск, он зависает и выдает 504.
Если я запускаю сервер напрямую, как python3 app.py, он отлично работает.
Если я запускаю его uwsgi, uwsgi --socket 0.0.0.0:8080 --protocol = http -w run: app, он тоже отлично работает, поэтому проблема, на мой взгляд, связана с конфигурацией nginx, но я не знаю, что может быть не так (я новичок в этом)
вот мои файлы:
run.py
from server import app
if __name__ == '__main__':
app.run()
server.py
app = Flask(__name__)
@app.route('/', methods=['GET', 'POST'])
def index():
uploaded_imgs = os.listdir('static/quick_demo')
uploaded_imgs_rdn = set(random.sample(uploaded_imgs, 7))
if request.method == 'POST':
file = request.files['query_img']
ts = int(time.time())
img = Image.open(file.stream) # PIL image
uploaded_img_path = "static/uploaded/{}_{}".format(ts, file.filename)
img.save(uploaded_img_path)
//some code here ...
return render_template('index.html',
query_path=uploaded_img_path,
query_upload_path=uploaded_imgs_rdn,
scores=scores)
else:
return render_template('index.html', query_upload_path=uploaded_imgs_rdn)
@app.route('/search/<img_id>', methods=['GET'])
def search_demo(img_id):
img_name = img_id
uploaded_imgs = os.listdir('static/quick_demo')
uploaded_imgs_rdn = set(random.sample(uploaded_imgs, 7))
if request.method == 'GET':
# file = request.files['query_img']
# ts = int(time.time())
img = Image.open("static/quick_demo/{}".format(img_name)) # PIL image
uploaded_img_path = "/static/quick_demo/{}".format(img_name)
# img.save(uploaded_img_path)
//some code here ...
return render_template('index.html',
query_path=uploaded_img_path,
query_upload_path=uploaded_imgs_rdn,
scores=scores)
else:
return render_template('index.html', query_upload_path=uploaded_imgs_rdn)
nginx_site.conf
server {
listen 80;
listen [::]:80;
root /var/www/site;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name XXX.XXX.XXX.XXX;
location / {
#try_files $uri $uri/ =404;
include uwsgi_params;
uwsgi_pass unix:/var/run/uwsgi/site.sock;
}
}
/ и т.д. / uwsgi / вассалы / site.ini
[uwsgi]
chdir = /var/www/site
module = run:app
touch-reload = /var/www/site/run.py
logto = /var/log/uwsgi/site.log
# master with 2 worker process (based on CPU number)
master = true
processes = 2
# use unix socket for integration with nginx
socket = /var/run/uwsgi/site.sock
chmod-socket = 660
# enable socket cleanup when process stop
vacuum = true
# ensure compatibility with init system
die-on-term = true
Я следую этому уроку
https://code.luasoftware.com/tutorials/nginx/setup-nginx-and-uwsgi-for-flask-on-ubuntu/
Пожалуйста, помогите.
Еще раз спасибо