0

アパートメント gem を実行しているときに、静的サブドメインを追加しようとすると問題が発生します。

基本的に私は次のようなことをしたい:

constraints subdomain: 'docs' do
   get 'some/page'
end

ただし、このコードをルート ファイルに配置して docs.mysite.co に移動しようとすると、次のエラーが発生します。

Apartment::TenantNotFound at /
One of the following schema(s) is invalid: "docs" "public", "shared_extensions"

私のルートファイル全体は次のとおりです。

class SubdomainPresent
  def self.matches?(request)
    request.subdomain.present?
  end
end

class SubdomainBlank
  def self.matches?(request)
    request.subdomain.blank?
  end
end

Rails.application.routes.draw do

  constraints subdomain: 'docs' do
     get 'some/page'
  end

  constraints(SubdomainPresent) do
    mount ImageUploader::UploadEndpoint => "/images/upload"

    root 'account_dashboard#index'

    devise_for :users
    devise_scope :user do
      get 'login', to: 'devise/sessions#new'
    end

    resources :accounts
  end

  constraints(SubdomainBlank) do
    require 'sidekiq/web'
    mount Sidekiq::Web => '/sidekiq'

    root 'visitor#index'

    resources :accounts, only: [:new, :create]
  end

end

ここでの支援は大歓迎です!さらに情報を追加する必要がある場合はお知らせください!

編集 # 1 Application.rb を追加

require_relative 'boot'

require 'rails/all'

# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)

module PatrolVault20161116Web
  class Application < Rails::Application
    # Settings in config/environments/* take precedence over those specified here.
    # Application configuration should go into files in config/initializers
    # -- all .rb files in that directory are automatically loaded.
    config.active_job.queue_adapter = :sidekiq
  end
end
4

1 に答える 1