- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我尝试使用 Staticfile Buildpack 访问托管在 Cloud Foundry 上的 JavaScript 文件时,我的浏览器拒绝加载它并在控制台中显示一条错误消息:
Access to script at ‘…’ from origin ‘…’ has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource
如何在 Cloud Foundry Staticfile Buildpack 中配置跨源资源共享 (CORS)?
最佳答案
创建一个名为Staticfile
的文件,内容如下:
root: public
location_include: includes/*.conf
确保您希望应用提供的文件位于 public
文件夹中。
使用以下内容创建文件 nginx/conf/includes/headers.conf
(及其父文件夹):
add_header 'Access-Control-Allow-Origin' '*';
就是这样!在您的下一次 cf push
之后,将设置 CORS header 。
为了更清楚,另见官方代码示例include_headers_public
.
截至 Staticfile Buildpack documentation :
If you create a file named
Staticfile
and locate it in the build directory of your app, Cloud Foundry automatically uses the Staticfile buildpack when you push your app.
(这意味着您不需要在 manifest.yml
中指定 staticfile_buildpack
)
然后按照 Custom Location
下的说明进行操作.
Custom Location allows you to specify custom location definitions with additional directives.
To customize the location block of the NGINX configuration file, follow the steps below.
- Set an alternative
root
directory. Thelocation_include
property only works in conjunction with an alternativeroot
.
- Create a file with location-scoped NGINX directives. See the following example, which causes visitors of your site to receive the
X-MySiteName
HTTP header:
- File:
nginx/conf/includes/custom_header.conf
- Content:
add_header X-MySiteName BestSiteEver;
Set the
location_include
variable in your Staticfile to the path of the file from the previous step. This path is relative tonginx/conf
.Example:
root: public
location_include: includes/*.conf
关于cors - 如何在 Cloud Foundry Staticfile Buildpack 中配置 CORS 策略以添加缺少的 'Access-Control-Allow-Origin' header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58408784/
目标 我对 Heroku 很陌生,我正在尝试部署一个 非常简单的网站进入 Heroku。 网站结构 如您所见,我并不是要在这里部署复杂的 Node.js 或 Laravel 站点。 脚步 我当然登录到
我的应用程序依赖于nodejs和phantomjs,我遵循trigoman的答案Is there a working nodejs/phantomjs Heroku buildpack? . 但我陷入
我用 python 写了一个网络爬虫。 为了部署到heroku上,我引用了这篇文章。 https://www.andressevilla.com/running-chromedriver-with-p
我目前正在开发一个 Spring Native 应用程序,它正在使用 paketo buildpack 进行构建并生成一个 Docker 镜像。 我想知道是否可以通过添加第三方工具(例如 Datado
我正在尝试部署我在 ASP.Net 4.6.1 中构建的应用程序。所以我正在使用 HWC Buildpack。下面是我的 manifest.yml --- applications: - name:
我有一个带有 gradle 和 spring boot 的 java 项目,我想将其部署到 Heroku。 我使用 gradle war 在本地创建了 myApp.war(我必须在本地部署,因为我使用
我正在使用heroku-buildpack-multi: BUILDPACK_URL=https://github.com/ddollar/heroku-buildpack-multi.git 我尝试
我正在处理 a Spring Boot application应该使用 Cloud Native Build Packs/Paketo.io 将其打包到 OCI 容器中。我使用 GitHub Acti
我正在尝试部署用 swift 编写的 Web 服务,我没有看到 Web 根文件夹,也不知道在哪里创建该文件夹。有人尝试过,请帮我复制源代码并启动服务器。 最佳答案 那么,您能告诉我到目前为止您在启动和
所以我正在学习如何将 git 与 Heroku 一起使用,但我似乎无法 git push 我的设置 repo 协议(protocol)。所以我通过这样做将 buildpack 设置为 ruby,将
我正在尝试将我的 Discord Bot 部署到 Heroku,并且我已经成功地将我的 Github 帐户链接到 Heroku。它可以成功找到我正在尝试部署的存储库,但是当我尝试手动部署时,它会给我错
我正在制作一个机器人,它将一个 mp3 文件输出到与 discord.py 的语音聊天中,它通过以下方式在本地工作:vc.play(discord.FFmpegPCMAudio(executable=
我正在尝试将 compass 构建包推送到 heroku 服务器,https://github.com/stephanmelzer/heroku-buildpack-nodejs-grunt-comp
我正在尝试安装 texlive-full通过制作自定义 buildpack 在 heroku 上打包。我正在开发 django 应用程序,所以我目前使用的版本是 heroku-buildpack-py
我想用运行的Procfile部署应用程序 web: node myapp.js 在myapp.js使用phantomjs-node运行 headless Webkit内容的情况下,将结果返回到浏览器请
我正在尝试在 Heroku 上安装 M2Crypto。这依赖于安装的 SWIG。 我创建了一个 custom compiled swig executable和一个 custom buildpack
当我跑 git push heroku master这就是我得到的: C:\Users\Emanuele-PC\Desktop\project-mm-beta>git push heroku mast
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,因为
我正在为 heroku-buildpack-fantom 编写一个自定义 Heroku buildpack ( Fantom ) ,作为 compile 脚本的一部分,我下载了一个 .zip 文件(从
我正在尝试使用专门为其定制的heroku buildpack 来构建一个C 应用程序。问题是,编译后到达最后阶段 -----> Installing 并失败。有人能够解释我需要做什么才能成功部署它吗?
我是一名优秀的程序员,十分优秀!