我开始,我想用Nginx连接到我的数据库。这是我的sites-enables / default
文件:
http {
upstream database {
postgres_server 192.168.0.166 dbname=stardb
user=username password=yourpass;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
location /ip {
postgres_pass database;
postgres_query HEAD GET "SELECT http_host as ip FROM establishment_view where aet = 'NXS_DEV_FLO2'";
}
}
}
我收到此错误:
nginx [7597]:nginx:[emerg]“http”指令在/ etc / nginx / sites-enabled / default中不允许:17
我看到这个错误很常见,但即使查看其他帖子我也无法解决我的问题。
我在nginx.conf
文件中有这一行:
include /etc/nginx/sites-enabled/*;
我是否需要删除sites_enables/default
文件中的http行?
答案 0 :(得分:3)
当你确实包含它时,它与粘贴匹配文件中的内容一样好。所以,如果我的主要nginx.conf
是
http {
line 1
line 2;
include sites-enabled/*.conf;
}
sites-enabled/default.conf
位于
http {
server {
line 3;
}
}
有效配置变为
http {
line 1;
line 2;
http {
server {
line 3;
}
}
}
现在http
指令不允许在任何其他指令中使用,您可以在根级别使用它。所以"http" directive is not allowed here
的错误。您应该运行nginx -T
以查看它使用的完整组合配置。
修复很简单,从http
文件中移除default
封闭块,因为您已经在http
块中