Настройка nginx+uwsgi

Автор Vitek, 08 февраля 2014, 14:37:52

« назад - далее »

0 Пользователи и 1 гость просматривают эту тему.

Vitek

Добрый день!
Пытался настроить nginx+uwsgi, но что то то не выходит:(
Конфиг nginx

server {
    listen          80;
    server_name     localhost;
    location /static {
        alias /var/www/testsite/static;
    }
    error_page   404              /404.html;
    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
        root   /usr/share/nginx/html;
    }
    location / {
        include         uwsgi_params;
        uwsgi_pass unix:/tmp/uwsgi.sock;
        uwsgi_param UWSGI_PYHOME /var/www/testsite/env;
        uwsgi_param UWSGI_CHDIR /var/www/testsite/project;
        uwsgi_param UWSGI_MODULE <project-name>.wsgi:application;
    }     
}

Но когда ввожу в адресную строку http://localhost/testsite выводит следующее:

An error occurred.

Sorry, the page you are looking for is currently unavailable.
Please try again later.

If you are the system administrator of this resource then you should check the error log for details.

Faithfully yours, nginx.


В чем пробела?
Заранее спасибо.