1. server {
    2. listen 80;
    3. server_name _;
    4. charset utf8;
    5. root /var/nginx/html;
    6. location / {
    7. index index.html index.php;
    8. }
    9. location /api {
    10. rewrite ^/api/(.*)$ /$1 break;
    11. // 用正则匹配,去掉 api 前缀,$1 是正则中的第一串。后端的接口不需带 api
    12. proxy_pass http://127.0.0.1:8080;
    13. }
    14. }