4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ALMiniumでリポジトリへのアクセス時にLDAP認証を有効にする方法

Posted at

ALMinium は プロジェクト管理ツールRedmine とその他便利なプラグインを一括してセットアップしてくれるインストーラである。
しかしLDAP認証を利用した場合、リポジトリへのアクセス時に適切に認証されない。

以下を追加する事により、リポジトリへのアクセス時にも適切に認証されるようになる。

対象環境は ubuntu12.04 server

# LDAP認証に必要なPerlモジュールをインストール
sudo apt-get install -y libauthen-simple-ldap-perl

# インストールしたPerlモジュールをApacheに設定する
sudo sed -i -e "3i PerlLoadModule Authen::Simple::LDAP" /etc/apache2/sites-available/vcs

# Apacheを再起動して設定を有効化
sudo service apache2 restart

参考


4
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?