在 ElasticBeanstalk 中的 nginx 服务器上启用 cors?
Posted
技术标签:
【中文标题】在 ElasticBeanstalk 中的 nginx 服务器上启用 cors?【英文标题】:enabling cors on a nginx server in ElasticBeanstalk? 【发布时间】:2018-06-18 19:32:45 【问题描述】:我正在将我的 Nodejs 应用程序部署到运行 nginx 的 AWS Elastic Beanstalk。
该应用程序本质上是一个 api,我可以调用和检索 JSON 数据,即 myapi.awselasticbeanstalk.com/api/get_stuff 等。
我正在尝试启用 CORS,以便我可以从我的 javascript 应用程序(客户端)访问服务器。
根据亚马逊文档,我可以编辑或扩展 nginx 配置,将配置文件添加到 .ebextensions 文件夹。
cors.config
files:
/etc/nginx/conf.d/cors.conf:
mode: "000644"
owner: root
group: root
content: |
location /
if ($request_method = 'OPTIONS')
add_header 'Access-Control-Allow-Origin' '*';
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-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
#
# 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;
if ($request_method = 'POST')
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
if ($request_method = 'GET')
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
add_header 'Access-Control-Expose-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Content-Range,Range';
但这仍然不适合我。
【问题讨论】:
你把conf文件加到sites-enabled
了吗?
@MikeTung 我不明白你的意思?我很新 ti nginx
/etc/nginx/sites-available
我相信是路径。您需要将您的配置文件符号链接到该位置,然后重新加载 nginx。
【参考方案1】:
如果您在 node/express 应用程序发出的响应中设置 CORS 标头,则无需向 Nginx 配置添加任何内容。
以下是对我有用的配置,也在 Beanstalk 上运行 node.js,以及调用 API 的云端托管客户端应用程序。
根据需要修改:
server.use(function(req, res, next)
res.header('Access-Control-Allow-Origin', '*')
res.header('Access-Control-Allow-Credentials', true)
res.header('Access-Control-Allow-Methods', 'POST, GET, OPTIONS')
res.header('Access-Control-Allow-Headers', 'Origin, X-Requested-With, Content-Type, Accept')
next()
)
【讨论】:
这并不完全正确。 Elasic Beanstalk 可以配置为从代理提供静态文件,而无需接触您的应用程序。在这种情况下,只有 nginx(或 apache)可以负责设置 CORS 标头。 这个解决方案对我不起作用......我也尝试了 cors npm 包和 Access-Control-Allow-Origin: "*" ngix config via .ebextendsions,但什么也没发生。你的节点应用程序的所有配置是什么?? @mEnE cors npm 包对我也不起作用。如果您从 nodejs 应用程序提供资产,则可以使用上面的解决方案。如果它们是通过 nginx 提供的,那么 @carpiediem 是正确的。你需要类似location ~* \.(eot|otf|ttf|woff|woff2)$ add_header Access-Control-Allow-Origin *; expires max;
我想从 api.my-domain URL 获取 API 响应,我通过重定向配置解决了这个问题到我的前端的 Web 服务器。正在重定向 /api/* (my-domain.com/api/...) 到 api.my-domain.com...以上是关于在 ElasticBeanstalk 中的 nginx 服务器上启用 cors?的主要内容,如果未能解决你的问题,请参考以下文章
如何访问部署在 aws elasticbeanstalk 中的文件
elasticbeanstalk中的非线程安全Rails 5 App
ElasticBeanstalk 中的 ActionCable 失败并出现无法追踪的错误
如何使用aws elasticbeanstalk中的钩子运行部署后脚本?