複数のドメインをどのように管理しますか?

SSLcatは強力なマルチドメイン管理機能を提供し、複数のビジネスドメインのSSL証明書とプロキシ設定を統一管理できます。

マルチドメイン設定構造

設定ファイルで複数のドメインを定義:

# マルチドメイン設定例
certificates:
  - domain: "example.com"
    validation: "http"
    auto_renew: true
  
  - domain: "www.example.com"
    validation: "http"
    auto_renew: true
  
  - domain: "api.example.com"
    validation: "http"
    auto_renew: true
  
  - domain: "admin.example.com"
    validation: "http"
    auto_renew: true

proxies:
  - domain: "example.com"
    target: "http://localhost:3000"
    protocol: "http"
  
  - domain: "www.example.com"
    target: "http://localhost:3000"
    protocol: "http"
  
  - domain: "api.example.com"
    target: "http://localhost:8080"
    protocol: "http"
  
  - domain: "admin.example.com"
    target: "http://localhost:9000"
    protocol: "http"

ワイルドカード証明書管理

ワイルドカード証明書を使用してマルチドメイン管理を簡素化:

# ワイルドカード証明書設定
certificates:
  - domain: "*.example.com"
    validation: "dns"
    dns_provider: "cloudflare"
    dns_credentials:
      api_token: "your-api-token"
    auto_renew: true

proxies:
  - domain: "www.example.com"
    target: "http://localhost:3000"
    certificate: "*.example.com"
  
  - domain: "api.example.com"
    target: "http://localhost:8080"
    certificate: "*.example.com"
  
  - domain: "admin.example.com"
    target: "http://localhost:9000"
    certificate: "*.example.com"

バッチ証明書操作

バッチ証明書管理操作をサポート:

ドメイングループ管理

ビジネスまたは環境別にドメインをグループ管理:

# 環境別グループ
certificates:
  production:
    - domain: "example.com"
    - domain: "www.example.com"
    - domain: "api.example.com"
  
  staging:
    - domain: "staging.example.com"
    - domain: "staging-api.example.com"
  
  development:
    - domain: "dev.example.com"
    - domain: "dev-api.example.com"

自動化運用

マルチドメインの自動化管理:

管理パネル操作

Web管理パネルを通じてマルチドメインを管理:

監視とアラート

マルチドメイン監視機能:

ベストプラクティス

マルチドメイン管理のベストプラクティス:

SSLcatのマルチドメイン管理機能により、大量のドメインのSSL証明書とプロキシ設定を簡単に管理できます。