Maxim Dounin Wrote:
-------------------------------------------------------
> Hello!
>
> On Mon, May 27, 2013 at 12:48:38PM -0400, Mitry Matyushkov wrote:
>
> > Привет всем.
> >
> > Перевожу проект на uwsgi, столкнулся с фичей:
> >
> > upstream up {
> > server 127.0.0.1:12345;
> > }
> >
> > proxy_pass http://${var}up;
> >
> > работает, но при замене на:
> >
> > uwsgi_pass ${var}up;
> >
> > получаю:
> > nginx -t
> > nginx: [emerg] directive "uwsgi_pass" is not terminated by ";" in
> > /etc/nginx/includes/proxy.conf:9
> >
> > Как жить дальше?
>
> uwsgi_pass "${var}up";
Спасибо, помогло.