3
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WSLでバーチャルホストの設定

Posted at

WSLでバーチャルホストの設定

この記事を読んでLaravelのブラウザテストをしようと思い、bloglaravel58.comというサーバーネームでバーチャルホストの設定をした時にハマったことを書きます。

環境

PHP 7.2
Ubuntu 18.04(WSL)

/etc/apache2/sites-available/virtualhost.conf
<VirtualHost *:80>
    ServerName bloglaravel58.com
    Serveradmin webmaster@virtual.host
    DocumentRoot /home/user/php/app/lara58/public
    ErrorLog /var/log/apache2/virtual.host.error.log
    CustomLog /var/log/apache2/virtual.host.access.log combined
    LogLevel warn
    <Directory /home/user/php/app/lara58/public>
        AllowOverride All
        Options All
        Require all granted
    </Directory>
</VirtualHost>
/etc/hosts
127.0.0.1	localhost
127.0.0.1	bloglaravel58.com

これでhttp://bloglaravel58.comにアクセスしたらERR_NAME_NOT_RESOLVEDが出ました。

調べてみるとこのissueを見つけました。
windows側でもetc/hostsファイルに書かないといけないようです。

管理者権限でメモ帳を開いてC:\Windows\System32\drivers\etc\hosts

127.0.0.1	bloglaravel58.com

と書きます。

これで完了です。

3
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?