获取403 Nginx反向代理

时间:2020-10-26 09:34:59

标签: nginx nginx-reverse-proxy nginx-location nginx-config

我已经安装了nginx,并且一切都按我的预期进行,然后我注意到反向代理不起作用。 这是我的配置文件。任何想法我在这里做错了吗?网站启动并运行,但是当我单击按钮时,我得到403。

server {
  root /home/test/app;
  index index.html;
  server_name test.com www.test.com;
  location / {
    try_files $uri $uri/ =404;
  }
  # node api reverse proxy
  location /api {
    proxy_pass http://127.0.0.1:8080/patc/api;
    proxy_set_header Host      $host;
    proxy_set_header X-Real-IP $remote_addr;
  }

0 个答案:

没有答案