gpt4 book ai didi

angular - NGINX:我的 nginx 配置有什么问题

转载 作者:太空狗 更新时间:2023-10-29 17:58:41 26 4
gpt4 key购买 nike

我有一个由 nginx 提供服务的 Angular 应用程序,这个 Angular 应用程序与同一台服务器上的其余后端通信。

我的/etc/nginx/sites-available/中有以下两个服务器配置

“默认”和“应用程序”默认服务器监听 80 时,Angular 应用程序可以正常运行。

  server{
listen 80 default_server;
listen [::]:80 default_server;


root /var/www/html;

# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;

server_name _;

location / {

# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html ;
}

然后在我的“app”服务器 block 中,它应该重定向对 rest 后端的请求,

server{
listen [::]:80 ;

server_name xxx.com;

location / {

proxy_pass http://127.0.0.1:8082;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}

}

但是当我的 Angular 应用程序遇到 POST API 端点时,它会得到一个 405(方法不允许),这是因为它直接命中 nginx 服务器甚至不会休息端点(在 8082 上),否则选项将是首先发送,但我只看到一个请求被发出,并且直接是 POST,这意味着它甚至没有重定向到其他端口,否则 CORS 设置将在我的 REST 后端被调用。我不知道我做错了什么,同一个应用程序在本地运行得很好。我仔细检查了 sites-enabled 文件夹中的符号链接(symbolic link),它们是绝对路径。

编辑:我的请求头

Accept:*/*
Accept-Encoding:gzip, deflate
Accept-Language:en-US,en;q=0.9
Access-Control-Request-Headers:content-type
Access-Control-Request-Method:POST
Cache-Control:no-cache
Connection:keep-alive
Host:example.com
Origin:http://example.com
Pragma:no-cache
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36

我的操作系统Ubuntu:16.04,nginx:1.10.3。

最佳答案

尝试合并两个服务器 block :

 server{
listen 80 default_server;
listen [::]:80 default_server;
root /var/www/html;
# Add index.php to the list if you are using PHP
index index.html index.htm index.nginx-debian.html;
server_name _;
location / {
# First attempt to serve request as file, then
# as directory, then fall back to displaying a 404.
try_files $uri $uri/ /index.html ;
}
location /api/ {
proxy_pass http://127.0.0.1:8082/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}

并通过在 url 中附加 '/api/' 来访问所有其余的 api。

可能是它的 CORS 问题,将其添加到您的位置 block 中:

  if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Credentials' 'true';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
# Custom headers and headers various browsers *should* be OK with but aren't
#
add_header 'Access-Control-Allow-Headers' 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
#
# Tell client that this pre-flight info is valid for 20 days
#
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}

关于angular - NGINX:我的 nginx 配置有什么问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48417904/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com