一个静态文件来自 => 0.0.0.0
一个 Django 应用程序在 => 0.0.0.0/django
位于 => 0.0.0.0/strapi 的 Strapi API
... 使用 NGINX?
server {
listen 80;
server_name 0.0.0.0;
root /var/www/html;
index index.html;
location /static/ {
root /home/user/app/static/;
}
location /django {
proxy_pass http://0.0.0.1:8000;
}
location /strapi {
proxy_pass http://0.0.0.1:1337;
}
}
# I have my real IP not 0.0.0.0 in the file
/ 返回我的静态
/django 返回一个 django 404 页面
/strapi 返回一个 'not found' 的 html
我问的问题是“NGINX 位置可以为端口设置别名吗?”