运行 rails 在本地生产模式
Running rails in production mode locally
我正在尝试 运行 rails(不太了解)在生产模式下使用以下命令:
rails server -e production
但我在控制台中收到这些错误,并且正在加载一个没有 css 的丑陋页面:
Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://10.20.200.199:3000/".
(index):1 Refused to execute script from 'http://10.20.200.199:3000/javascripts/application.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
(index):1 Refused to execute script from 'http://10.20.200.199:3000/logins/plugins.js?v=1' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
我们正在使用的所有脚本都会出现这种情况。
谁能帮我看看这里可能出了什么问题。
提前致谢。
对于 运行 生产环境预构建资产:rake assets:precompile
描述的错误提示浏览器请求的是静态资源;这些不是构建的(它们不是在生产中自动构建的——你应该在每次部署时构建它们),所以在它们的 URL 上找不到任何东西,而是呈现错误页面。因此浏览器错误说下载的 css 和 javascript 文件有错误的 MIME 类型。
我正在尝试 运行 rails(不太了解)在生产模式下使用以下命令:
rails server -e production
但我在控制台中收到这些错误,并且正在加载一个没有 css 的丑陋页面:
Resource interpreted as Stylesheet but transferred with MIME type text/html: "http://10.20.200.199:3000/".
(index):1 Refused to execute script from 'http://10.20.200.199:3000/javascripts/application.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
(index):1 Refused to execute script from 'http://10.20.200.199:3000/logins/plugins.js?v=1' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled.
我们正在使用的所有脚本都会出现这种情况。
谁能帮我看看这里可能出了什么问题。
提前致谢。
对于 运行 生产环境预构建资产:rake assets:precompile
描述的错误提示浏览器请求的是静态资源;这些不是构建的(它们不是在生产中自动构建的——你应该在每次部署时构建它们),所以在它们的 URL 上找不到任何东西,而是呈现错误页面。因此浏览器错误说下载的 css 和 javascript 文件有错误的 MIME 类型。