栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

Django,Virtualenv,nginx + uwsgi导入模块wsgi错误

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Django,Virtualenv,nginx + uwsgi导入模块wsgi错误

我更新了wsgi.py使其看起来像这样:

import osimport sysimport sitesite.addsitedir(os.path.join('/home/ubuntu/ve','project/lib/python2.6/site-packages'))sys.path.append(os.path.abspath(os.path.dirname(__file__)))sys.path.append(os.path.join(os.path.realpath(os.path.dirname(__file__)), '../../../'))sys.path.append(os.path.join(os.path.realpath(os.path.dirname(__file__)), '../../'))os.environ['DJANGO_SETTINGS_MODULE'] = 'project.configs.staging.settings'import django.core.handlers.wsgiapplication = django.core.handlers.wsgi.WSGIHandler()

我的uwsgi.conf文件现在看起来像这样:

# file: /etc/init/uwsgi.confdescription "uWSGI starter"start on (local-filesystems and runlevel [2345])stop on runlevel [016]respawn# home - is the path to our virtualenv directory# pythonpath - the path to our django application# module - the wsgi handler python scriptexec /home/ubuntu/ve/project/bin/uwsgi --uid ubuntu --pythonpath /home/ubuntu/django-projects/project/project/configs/staging -H /home/ubuntu/ve/project --socket /tmp/uwsgi.sock --chmod-socket 644 --module wsgi --logdate --optimize 2 --processes 2 --master --logto /home/ubuntu/logs/project/uwsgi.log

我的nginx网站可用文件如下所示:

# file: /etc/nginx/sites-available/yourdomain.com# nginx configuration for project.maumercado.comserver {        listen 80;        charset utf-8;        server_name project.maumercado.com;        access_log /home/ubuntu/logs/project/nginx/access.log;        error_log /home/ubuntu/logs/project/nginx/error.log;        location ^~ /cache/ {     root /home/ubuntu/django-projects/project/project/media;     expires max;        }        location / {     uwsgi_pass unix:/tmp/uwsgi.sock;     include /etc/nginx/uwsgi_params;        }}

现在它的工作非常完美,我在样式方面遇到了一些问题,因为在css文件中使用了像ñ这样的奇怪字符。

现在,我想知道当需要使用uwsgi在同一服务器上运行更多项目时该怎么办?



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/419925.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号