在 Nginx 中启用子域后,GET 请求不起作用
GET Request is not working once subdomain is enabled in Nginx
通过为我的 public IP 启用子域,我无法从我的后端获得 GET 响应。
在我的本地机器上输入 URL http://localhost:3001/objects?design=ficco-desings&category=formals&type=
我们正在 JSON format 中得到回复。在我的本地机器上,它按预期工作。
在生产环境 (AWS) 中部署后,我们在 Nginx file
中将子域配置为 api.inzack.com
我们得到的错误是 attached
我们正在使用 Nginx conf 文件中的 rewrite 标签来发送 GET 请求参数。
请指出哪里出错了
location ~ ^/objects/ {
proxy_pass http://0.0.0.0:3001/$uri$is_args$args;
}
通过为我的 public IP 启用子域,我无法从我的后端获得 GET 响应。
在我的本地机器上输入 URL http://localhost:3001/objects?design=ficco-desings&category=formals&type=
我们正在 JSON format 中得到回复。在我的本地机器上,它按预期工作。
在生产环境 (AWS) 中部署后,我们在 Nginx file
中将子域配置为 api.inzack.com我们得到的错误是 attached
我们正在使用 Nginx conf 文件中的 rewrite 标签来发送 GET 请求参数。
请指出哪里出错了
location ~ ^/objects/ {
proxy_pass http://0.0.0.0:3001/$uri$is_args$args;
}