Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你如何设置一个 config.ru 文件让 Pow 在公共目录之外提供 html/css/js 文件?假设我想从 html 文件夹中提供它们。
您可以使用TryStaticrack -contrib:
TryStatic
require 'rack/contrib/try_static' use Rack::TryStatic, :root => "html", :urls => %w[/]
如果您在开发过程中只需要这个,您可能想要添加if ENV['RACK_ENV'] == 'development'(例如,如果您的 Web 服务器配置为从 提供服务html/)。
if ENV['RACK_ENV'] == 'development'
html/