Apache2

httpsからmongrelにReverseProxyする

apache2をフロントエンドにして、mongrelをバックエンドにする場合、 通常の場合はいいのですが、httpsをフロントエンドにして、 バックエンドがhttpの場合は相対パスはいいのですが、 redirectなどをすると、httpsのはずの部分がhttpに書き換わってしまい、…

複数サーバOKなSSL証明書

http://secure.livedoor.com http://www.blade-ntt.com 以上の2箇所ぐらいしかないみたい。 この2箇所だったらFQDNが同一の場合は複数台インストールOKです。 値段はどちらも63,000円(2006年9月1日現在)です。

apache2で外部からのみBasic認証

一番簡単なBasic認証の方法 Options +Indexes AuthUserFile /home/xibbar/.htpasswd AuthGroupFile /dev/null AuthType Basic AuthName "Please enter ID and password" <FILES .htaccess> order allow,deny allow from 192.168.1.0/24 deny from all </FILES> require valid-userと.h…