ubuntu + nginx + uwsgi

来源:互联网 发布:浏览器调试工具 java 编辑:程序博客网 时间:2024/05/21 03:55

ubuntu + nginx + uwsgi 问题:

1. apt-get install nginx

2. apt-get install python-dev

3. pip install uwsgi

def application(env, start_response):    start_response('200 OK', [('Content-Type','text/html')])    return "Hello World"

pip install uwsgi


uwsgi --http :9090 --wsgi-file /var/www/hello.py

原创粉丝点击