Я успешно запускаю субдомены на моем Mac OSX, как указано Robby on Rails . Я хотел бы следовать примеру кода ниже, но я не знаю, с чего начать. Как вы редактируете настройки DNS? Нужно ли иметь выделенный виртуальный хост для этого? Прямо сейчас у меня есть стандартный (дрянной) хостинг Dreamhost. Если я пойду с DVH, будет ли Media Temple хорошим выбором?
Любые записи СМИ были бы полезны - мои поиски в Google привели только к злым тирадам клиентов / хостинговой компании.
Спасибо!
# 1) Point *.example.com in your DNS setup to your server.
#
# 2) Setup an Apache vhost to catch the star pointer:
#
# <VirtualHost *:80>
# ServerName example.com
# ServerAlias *.example.com
# </VirtualHost>
#
# 3) Set the current account from the subdomain
class ApplicationController < ActionController::Base
before_filter :set_current_account
private
def set_current_account
@current_account = Account.find_by_subdomain!(request.subdomains.first)
end
end
# 4) Tie all top-level requests off the current account
class CustomersController < ApplicationController
def index
@customers = @current_account.customers
end
end