Skip to content

Nginx 前端配置及本地服务转发

Published: at 05:49 PMSuggest Changes

自用,免得再搜配置复制粘贴

Nginx 配置文件参考

location / {
  try_files $uri $uri/ /index.html;
}

location /api {
  proxy_pass http://localhost:3000/api;
  proxy_set_header   X-Forwarded-Proto $scheme;
  proxy_set_header   X-Real-IP         $remote_addr;
}

Previous Post
Nginx 跨域配置:添加 Access-Control-Allow-Origin
Next Post
Linux tar 命令使用教程