memo.xight.org

日々のメモ

userContent.css で Apache2 の server-status を見やすくする

使用前

クリックして拡大

使用後

クリックして拡大

userContent.css

@-moz-document url-prefix("http://localhost/path/to/server-status") {
	h1 {
		maring: 0;
		padding: 10px;
		color: #fff;
		background-color: #000;
	}
	td,th {
		padding: 5px;
		border: 1px #eee solid;
	}
	th {
		color: inherit;
		background-color: #eee;
	}
	pre {
		padding: 10px;
		color: #fff;
		background-color: #000;
	}
}


Reference

Firefox まとめサイト - usercontent.css
http://firefox.geckodev.org/?usercontent.css

mew で update ができない

Summary

12000通以上メールが存在するフォルダにて,s を入力.
2595通目以降がアップデートが出来ない.

Range (update): all
Communicating with the IMAP server...
Retrieving 12666 messages in background...
IMAP connection is lost

Range (update): update
Communicating with the IMAP server...
0 message retrieved. 9156 messages are left due to an error.

ad hoc な解決法

ディレクトリを複数に分けたらエラーが起こらなくなった.
一つのディレクトリ内で管理できるメール数に制限があるのかもしれない.
Thunderbird は異常無し.

INBOX.debian-users
INBOX.debian-users.2002
INBOX.debian-users.2003
INBOX.debian-users.2004
INBOX.debian-users.2005

Debian で Apache2 + SSL

Summary

Apache2 で SSL を導入する.
[2006-11-09] 変更.
[2008-06-18] 変更.

手順

1. 鍵の生成
2. SSL用 confファイル作成
3. VirtualHost とSSLモジュールの有効化
4. apache の再起動

/usr/share/ssl-cert/ssleay.cnf をコピーする

# cd /usr/share/ssl-cert
# cp ssleay.cnf custom.cnf
# vi custom.cnf


/usr/share/ssl-cert/custom.cnf を編集

<<

/etc/apache2/ssl/apache.pem を作成

# mkdir /etc/apache2/ssl
# make-ssl-cert /usr/share/ssl-cert/custom.cnf /etc/apache2/ssl/apache.pem


/etc/apache2/sites-available/ssl を作成

# cp /usr/share/apache2/config/default-443 /etc/apache2/sites-available/ssl


/etc/apache2/sites-available/ssl を編集


mod_sslを有効化

# a2enmod ssl
# a2ensite ssl


Reference

日々の試行と実験: SSL導入(Debian sarge apache2)
http://golgotha.xrea.jp/archives/2006/01/ssldebian_sarge.html

klog: Debian の Apache2 で SSL セットアップ
http://5net.com/blog/2004/11/debian_apache2_ssl.html

deb/WWWサーバ - PukiWiki Plus!
http://motoka.com/wiki/?cmd=read&page=deb%2FWWW%A5%B5%A1%BC%A5%D0

SSL用証明書の作成(Linux編)
http://www.aconus.com/~oyaji/www/certs_linux.htm

[2008-06-18] 追記

Debian Etchでは
apache2-ssl-certificate ではなく,
make-ssl-certを利用する.