isseium's blog

田舎に住むWebエンジニアのブログ

2010-09-20から1日間の記事一覧

Eclipse + Git (EGit) 設定メモ

背景と目的 2010/9/26 修正: インストールURL間違いEclipse で Git を使ってみたい。 ネットで調べたら、EGit (http://www.eclipse.org/egit/) というものがある。Ecilpse + EGit を構築してみます。 動作環境 OS Mac OS X 10.6.4 Eclipse 3.6.0 インストー…

bind (DNSサーバ構築)

bind(named)をよく理解していないので、とりあえず設定した項目のみ列挙。 /etc/named.conf コメント化 #listen-on port 53 { 127.0.0.1; }; #listen-on-v6 port 53 { ::1; }; options 内に追加 allow-query { localhost; localnets; }; allow-transfer { lo…

VirtualHost

基本 下記のようなバーチャルホスト設定にしたい。 URL DocumentRoot mizuhataya.com /var/www/html issei.mizuhataya.com /home/issei/public_html httpd.conf の編集 # vi /etc/httpd/conf/httpd.conf最後尾(Ctrl+G)に移動して、以下を追記。 /etc/httpd…