Mac の バーチャルホスト
毎回場所を忘れて調べたりするのでメモ…
目次
バーチャルホスト追加
1 |
sudo vi /etc/apache2/extra/httpd-vhosts.conf |
追加
1 2 3 4 5 6 7 8 9 |
<VirtualHost *:80> DocumentRoot "/ディレクトリ" ServerName local.test <Directory "/ディレクトリ"> Options FollowSymLinks Multiviews MultiviewsMatch Any Require all granted </Directory> </VirtualHost> |
構文チェック
1 |
httpd -t |
Syntax OK
ローカルホスト追加
1 |
sudo vi /etc/hosts |
追加
1 |
127.0.0.1 local.test |
Apache再起動
1 |
sudo apachectl restart |