Skip to content

Instantly share code, notes, and snippets.

@mitomex
Created February 27, 2013 20:36
Show Gist options
  • Save mitomex/5051467 to your computer and use it in GitHub Desktop.
Save mitomex/5051467 to your computer and use it in GitHub Desktop.
Local Server

ローカルサーバー構築

MAMP XAMPP を使わずにローカルサーバーを構築する。

手順

  1. Apache の起動
  2. バーチャルホストの設定
  3. PHP のインストール
  4. MariaDB のインストール

準備

Sublime Text 2 のパッケージで、ApacheConf.tmLanguageを入れておくと、Sublime Text 2 上でカラーリングされて便利。

Apache の起動

sudo apachectl start

上記コマンドをターミナルで。

バーチャルホストの設定

httpd-vhosts.conf ファイルを作成

バーチャルホストの設定ファイルである、httpd-vhosts.conf を作成する。

作成場所は、

~/Sites/

ということは、/Usears/ユーザー名/Sites というディレクトリを作成する。さらにその中に/logs//domain.local/というディレクトリも作成しておく。

作成するファイルはこちらを参考に。というかコピペ。

シンボリックリンクを作成

sudo ln -s ~/Sites/httpd-vhosts.conf /etc/apache2/other

hosts に設定を追加

/etc/hosts の中にある127.0.0.1 localの行を以下に変更。

127.0.0.1 local domain.local

httpd に設定を追加

/etc/apache2/httpd.conf に設定を追加。 ( ちなみに /private/etc/apache2/httpd.conf と同じみたい )

Include /etc/apache2/other/*.conf

Apache を再起動

変更した設定を反映させるために、Apache を再起動する。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment