项目文件划分
项目路径 /www/xxx api路径 /www/xxx/api h5路径 /www/xxx/h5 pc路径 /www/xxx/pc
xxx.conf 文件
server { listen 80; # 监听80端口 server_name xxx.com; # 域名 server_name_in_redirect on; # 转发时优先使用第一个域名 port_in_redirect off; # 转发时是否带上端口 charset utf-8; index index.html index.htm index.php; root /www/xxx/api; # 项目路径 作用于当前server块,其他location块可重新定