ruby 如果你想在heroku上为你的中间人应用程序添加基本身份验证,这是一个添加到middleman的config.ru文件的片段

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ruby 如果你想在heroku上为你的中间人应用程序添加基本身份验证,这是一个添加到middleman的config.ru文件的片段相关的知识,希望对你有一定的参考价值。

# This is a snippet to add to middleman's config.ru file if you want to add basic auth to your middleman app on heroku
# NOTE: you need to stick this above the build script like shown below

use Rack::Auth::Basic, "Restricted Area" do |username, password|
  [username, password] == ['username', 'password']
end

# This part below is just what builds the static site. you only need to add lines 4 - 6 above any build command like shown below.
use Rack::TryStatic, :root => "build", :urls => %w[/], :try => ['.html', 'index.html', '/index.html']

以上是关于ruby 如果你想在heroku上为你的中间人应用程序添加基本身份验证,这是一个添加到middleman的config.ru文件的片段的主要内容,如果未能解决你的问题,请参考以下文章

在 Ubuntu 上为 Ruby on Rails 安装 PostgreSQL

部署 Ruby on Rails - Heroku 有没有好的替代方案? [关闭]

如何在 Heroku 上为 Django 应用程序设置数据库?

我可以在 Heroku 中运行咖啡脚本吗?

如何在使用heroku部署的flask webapp上为每个用户实现唯一的会话[重复]

Heroku 环境中的 Ruby on Rails 应用程序:“使用 Mailgun 发送电子邮件”错误