Nginx无效的URL前缀 [英] Nginx invalid URL prefix

查看:1532
本文介绍了Nginx无效的URL前缀的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个非常基本的nginx设置,由于某种原因该设置失败了.

server {
    listen 80;
    server_name librestock.com;

    location = /favicon.ico { access_log off; log_not_found off; }
    location /static/ {
        root /home/david/StockSearch/stocksearch;
    }

    location / {
        include proxy_params;
        proxy_pass unix:/home/david/StockSearch/stocksearch/stocksearch.sock;
    }
}

根据我已阅读的所有内容,我正在正确设置服务器名称. 当我用服务器的IP替换librestock.com时,它就起作用了.

错误:

$ nginx -t
nginx: [emerg] invalid URL prefix in /etc/nginx/sites-enabled/stocksearch:12
nginx: configuration file /etc/nginx/nginx.conf test failed

解决方案

您需要在unix:路径上使用http://前缀,例如:

proxy_pass http://unix:/home/david/StockSearch/stocksearch/stocksearch.sock;

请参见

http://nginx.org/en/docs/http/ngx_http_proxy_module.html

I have a really basic nginx setup which is failing for some reason;

server {
    listen 80;
    server_name librestock.com;

    location = /favicon.ico { access_log off; log_not_found off; }
    location /static/ {
        root /home/david/StockSearch/stocksearch;
    }

    location / {
        include proxy_params;
        proxy_pass unix:/home/david/StockSearch/stocksearch/stocksearch.sock;
    }
}

according to everything I've read I'm setting the server name correctly. when I replace librestock.com with the ip of the server it works.

error:

$ nginx -t
nginx: [emerg] invalid URL prefix in /etc/nginx/sites-enabled/stocksearch:12
nginx: configuration file /etc/nginx/nginx.conf test failed

解决方案

You need the http:// prefix on your unix: path, as in:

proxy_pass http://unix:/home/david/StockSearch/stocksearch/stocksearch.sock;

See

http://nginx.org/en/docs/http/ngx_http_proxy_module.html

这篇关于Nginx无效的URL前缀的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆