nginx_前后端分离
1.代码
server { listen 8088; server_name localhost; location / { root /opt/test/73; index index.html; } location /api/ { #后台接口 proxy_pass http://localhost:8069/; } }
以上代码的意思是,静态页面服务未8088端口,在静态页面中的js当访问下面的"http://localhost:8088/api/"地址时,就可以实现,访问"http://localhost:8069/接口路径"。
2.实例