MAMP XAMPP を使わずにローカルサーバーを構築する。
- Apache の起動
- バーチャルホストの設定
- PHP のインストール
- MariaDB のインストール
Sublime Text 2 のパッケージで、ApacheConf.tmLanguage
を入れておくと、Sublime Text 2 上でカラーリングされて便利。
sudo apachectl start
上記コマンドをターミナルで。
バーチャルホストの設定ファイルである、httpd-vhosts.conf
を作成する。
作成場所は、
~/Sites/
ということは、/Usears/ユーザー名/Sites
というディレクトリを作成する。さらにその中に/logs/
と/domain.local/
というディレクトリも作成しておく。
作成するファイルはこちらを参考に。というかコピペ。
sudo ln -s ~/Sites/httpd-vhosts.conf /etc/apache2/other
/etc/hosts の中にある127.0.0.1 local
の行を以下に変更。
127.0.0.1 local domain.local
/etc/apache2/httpd.conf に設定を追加。 ( ちなみに /private/etc/apache2/httpd.conf と同じみたい )
Include /etc/apache2/other/*.conf
変更した設定を反映させるために、Apache を再起動する。