我有一台CentOS 7服务器,我运行了一些Golang应用程序。如您所知,每个应用程序都在自己的端口上运行,比方说:9000,9100,9200等等。
现在,我已经安装了Nginx来服务所有网站,我有一个每个网站的域名,我想收到端口80中的所有请愿,然后只是基于域我必须重定向到对应的应用程序
到现在为止,我试图使用端口9094中运行的网站之一,我没有使用Nginx的经验所以我只是在阅读以了解该做什么,但它似乎就是这样不工作在文件nginx.conf
中我添加了这些行:
server {
listen 80;
server_name mydomain.com;
access_log logs/mydomain.log main;
location / {
proxy_pass http://127.0.0.1:9094;
}
}
我必须提到我没有删除文件中默认的这些行:
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
# Load configuration files for the default server block.
include /etc/nginx/default.d/*.conf;
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
配置好吗?并允许我添加更多网站?谢谢 如果我ping到域名一切正常,但如果我在浏览器中打开域名,那么我会得到状态码502
修改
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
# Load modular configuration files from the /etc/nginx/conf.d directory.
# See http://nginx.org/en/docs/ngx_core_module.html#include
# for more information.
include /etc/nginx/conf.d/*.conf;
server {
listen 80;
server_name mydomain.com;
access_log logs/mydomain.log main;
location / {
proxy_pass http://127.0.0.1:9094;
}
}
}
答案 0 :(得分:3)
您的服务器配置看起来没问题,EXPLAIN表示您没有正确配置Go服务器。具体来说,Nginx完全符合您的预期,代理了上游的请求,但收到了来自Go服务器的无效响应。