過去のナビゲーションリンクのスキップSecure Global Desktop 管理者ガイド > ユーザーと認証 > ブラウザベース Webtop での Web サーバー認証

ブラウザベース Webtop での Web サーバー認証

ブラウザベース Webtop の Web サーバー認証を有効にするには、次の手順を実行します。

  1. 各アレイメンバー上で、/sgd URL へのアクセスを保護するように Web サーバーを設定します。
  2. Array Manager で、「Secure Global Desktop Login」、「Properties」の順にクリックします。
  3. 「Use third party authentication」の横のチェックボックスにチェックマークを付けます。
  4. 「User identity mapping」で、1 つ以上のボックスにチェックマークを付けます。
  5. Web サーバー認証を信頼するように、Secure Global Desktop Web Serverの Tomcat コンポーネントを設定します。各アレイメンバー上で、 /opt/tarantella/webserver/tomcat/version/conf/server.xml ファイルを編集します。以下の属性を、Coyote/JK2 AJP 1.3 Connector のコネクタ要素 (<Connector>) に追加します。
    tomcatAuthentication="false"

Secure Global Desktop Web Serverの設定例

ここでは、Web サーバー認証を使用できるように Secure Global Desktop Web Serverを設定する手順の例を紹介します。

  1. /opt/tarantella/webserver/apache/version/bin/htpasswd バイナリを使用して、Web サーバーのパスワードファイルを作成します。
  2. /opt/tarantella/webserver/apache/version/conf/httpd.conf ファイルを編集して、以下のディレクトリディレクティブを挿入します。
    過去の書式設定済みテキストのスキップSetEnvIf Request_URI "\.(cab|jar|gif|der)$" sgd_noauth_ok
        
    <LocationMatch /sgd>
       Order Allow,Deny
       Allow from env=sgd_noauth_ok
       AuthUserFile file-path
       AuthName auth-domain
       Authtype Basic
       Require  valid-user
       Satisfy  any
    </LocationMatch>
    file-path は Web サーバーのパスワードファイルへのフルパス、
    auth-domain は Web ブラウザの認証ダイアログに表示される認証レルムの名前です。
  3. Secure Global Desktop Web Server を再起動 (tarantella webserver restart ) して、設定の変更を有効にします。

関連トピック