Nginx配置反向代理并重写URL
nginx.conf1234567# ...location /api { rewrite /api/(.+)$ /$1 break; proxy_pass http://localhost:3000 ; proxy_redirect off;}# ... 访问:http://localhost/api,会代理到http://localhost:3000,http://l...
nginx.conf1234567# ...location /api { rewrite /api/(.+)$ /$1 break; proxy_pass http://localhost:3000 ; proxy_redirect off;}# ... 访问:http://localhost/api,会代理到http://localhost:3000,http://l...
安装安装Command Line tools1xcode-select --install 安装brew命令1ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装nginx1brew install nginx 操作启动1sudo nginx...