前后端分离的项目使用nginx部署的三种方式

前后端分离的项目,前端和后端可以用不同的域名,也可以用相同的域名
以下为前后端使用相同域名情况:
一、前端使用www.xxx.com,后端使用api.xxx.com

server {
server_name www.xxx.com;

location / {
    root /tmp/dist;
    index index.html;
    try_files $uri $uri/ /index.html;
}

}
server {
server_name api.xxx.com;
location / {
uwsgi_pass 127.0.0.1:8000;
include /etc/nginx/uwsgi_params;
}
}
二、前端使用www.xxx.com,后端使用www.xxx.com/api/
1、uwsgi如果是使用http方式可以这样配

server {
server_name www.xxx.com;

location / {
    root /tmp/dist;
    index index.html;
    try_files $uri $uri/ /index.html;
}

location ^~ /api/ {
    proxy_pass http://127.0.0.1:8000/;
}

}
2、uwsgi如果是使用socket方式的话需要这样配

server {
server_name www.xxx.com;

location / {
    root /tmp/dist;
    index index.html;
    try_files $uri $uri/ /index.html;
}

location ^~ /api/ {
    proxy_pass http://127.0.0.1:8080/;
}

}
server {
listen 8080;
location / {
uwsgi_pass 127.0.0.1:8000;
include /etc/nginx/uwsgi_params;
}
}

你可能感兴趣的:(软件安装)