Nginx中间件之UWSGI配置场景python


test2026-06-13 10:38


test2026-06-13 13:52


server {
    listen 8090;
    server_name localhost;
    location / {
        include uwsgi_params;
        uwsgi_pass 127.0.0.1:9999;
        uwsgi_param UWSGI_SCRIPT demo.wsgi;
        uwsgi_param UWSGI_CHDIR /home/app/demo;
        index index.html index.htm;
        client_max_body_size 35m;
    }
}

test2026-06-13 13:53


#django-admin startproject demo

test2026-06-13 21:29