2007-10-09から1日間の記事一覧

[ubuntu][ntp] NTPを使って時計をあわせる

ntp-simpleをインストール # apt-get install ntp-simple/etc/ntp.conf の serverディレクティブ にmfeedのサーバーを指定 #server ntp.ubuntu.com コメントアウト server ntp1.jst.mfeed.ad.jp server ntp2.jst.mfeed.ad.jp server ntp3.jst.mfeed.ad.jp 再…

[apache]apacheのログに画像へのアクセスとLANからのアクセスを残さないようにする

SetEnvIfで対象を設定する SetEnvIf Request_URI "\.(gif)|(jpg)|(png)|(ico)" no_log SetEnvIf Remote_Addr 127.0.0.1 no_log SetEnvIf Remote_Addr 192.168.11. no_log CustomLogディレクティブにenv=!no_logを追加 CustomLog /var/log/apache2/access.log…