有一段时间我用Angularjs前端和API后端构建了一个应用程序,所以如果这是一个相当愚蠢的问题,请原谅我。我想运行一个为API提供服务的Python后端。每个端点都应该以/api/
开头。现在这个应用程序在‘api’文件夹中运行,这是我的文件夹结构:
-api/
-- controllers/
-- __init__.py
-config/
-public/
-- assets/
-- index.html
-server.py
现在我正在弄清楚如何运行when服务器,当我使用以/api
开头的端点时,它会访问api文件夹中的文件,而其他所有端点都应该访问我的AngularJS应用程序,该应用程序可以从公共文件夹访问。这样,我可以从我的AngularJS应用程序访问Python API端点,并且仍然非常安全,因为我的Python源文件不能从公共文件夹中获得。
因此,AngularJS端点:/home
/login
/logout
等。
Python API端点:/api/user
、/api/user/profile
等(每个以/api/
开头的端点。
有什么想法吗?我可以在不同的端口上运行两台服务器,但这不应该这样做。我用PHP做过类似的事情,但从来没有用Python做过,不知何故,这让我现在很头疼。
如果有人能帮我,那就太好了。
发布于 2018-08-10 09:49:08
您可以使用nginx部署此项目。
server {
listen 80;
listen [::]:80;
server_name xyz.com;
root /var/www/frontend/xyz-frontend/dist;
index index.php index.html index.htm index.nginx-debian.html;
# handles the api requests
location /api {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
proxy_pass http://unix:/var/www/services/xyz/api.sock;
}
# FOR ANGULAR BUILD
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html /custom_50x.html;
}
https://stackoverflow.com/questions/51782994
复制相似问题