iPhoneのSafariでソースを見たい

忘備録

http://logic.moo.jp/data/archives/793.html

javascript:d=document;c=d.charset%7C%7C0;i=0;o=d.documentElement;d.write(%22%3Cpre%3E%22+(o.outerHTML%7C%7Co.innerHTML).replace(/&/g,%22&%22).replace(/%3C/g,%22<%22).replace(/%3E/g,%22>%22)+%22%3C/pre%3E%22);c?d.charset=c:0;void(document.close());

cygwinでのrsyncメモ

備忘録

rsync -av -e ssh –chmod=ugo=rwX –delete /cygdrive/sourcedir/ ruser@remotehost:/remotedir

引用: http://slashdot.jp/journal/558617/cygwin%E3%81%A7%E3%81%AErsync%E3%83%A1%E3%83%A2

apacheで特定URLのみクライアント証明書を有効にする

防備録。


http://qa.atmarkit.co.jp/q/2032

# ssl.confの中、VirtualHostディレクティヴ内
<Location /aaa>
  ProxyPass http://aaa.example.com:80/
  ProxyPassReverse http://aaa.example.com:80/
</Location>

<Location /bbb>
  SSLVerifyClient require
  SSLVerifyDepth 1
  ProxyPass http://bbb.example.com:80/
  ProxyPassReverse http://bbb.example.com:80/
</Location>

ちなみにクライアント証明書のために必要なディレクティヴSSLCACertificateFileはLocationの中に記述することはできません。SSLCertificateFileやSSLCertificateKeyFileと同様、ssl.confのVirtualHostディレクティヴなどの中に記述してください。