在ElasticBeanstalk中的nginx服务器上启用CORS? [英] enabling cors on a nginx server in ElasticBeanstalk?

查看:87
本文介绍了在ElasticBeanstalk中的nginx服务器上启用CORS?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将Nodejs应用程序部署到运行nginx的AWS Elastic Beanstalk.

Im deploying my Nodejs app to AWS Elastic Beanstalk running nginx.

该应用实质上是一个api,我可以对其进行调用并取回JSON数据,例如myapi.awselasticbeanstalk.com/api/get_stuff等.

The app is essentially an api, which i can make calls to and retrieve back JSON data i.e. myapi.awselasticbeanstalk.com/api/get_stuff etc.

我正在尝试启用CORS,以便我可以从我的javascript应用程序(客户端)访问服务器.

Im trying to enable CORS so i can access the server from my javascript application (the client).

根据Amazon文档,我可以编辑或扩展nginx配置,将配置文件添加到.ebextensions文件夹.

As per amazon documentation I can edit or extend the nginx configuration adding a config file to the .ebextensions folder.

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';
             }
        }

但这对我仍然不起作用.

but this is still not working for me.

推荐答案

如果您在节点/express应用程序发出的响应中设置了CORS标头,则无需在Nginx配置中添加任何内容.

If you set CORS headers in the response that goes out of your node/express application, you don't need to add anything to Nginx configuration.

下面是对我有用的配置,它还在Beanstalk上运行node.js,以及在Cloudfront托管的调用API的客户端应用程序.

Below is the configuration that worked for me, also running node.js on Beanstalk, and a cloudfront-hosted client application calling the 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()
})

这篇关于在ElasticBeanstalk中的nginx服务器上启用CORS?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆