nginx 前后端分离配置与多项目共用端口配置
作者:互联网
前后端分离配置
项目文件划分
项目路径 /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块可重新定
标签:index,www,路径,xxx,server,nginx,api,共用,端口配置 来源: https://blog.csdn.net/sinat_36264009/article/details/118100690