過去のナビゲーションリンクのスキップSecure Global Desktop 4.31 管理者ガイド > ユーザーと認証 > ブラウザベース 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 ) して、設定の変更を有効にします。

関連トピック