2

fakedomainname.dev個人的なプログラミングのテスト用に、Ubuntu インストールに apache2 サーバーをインストールしています (13.04 、それが役立つ場合) localhost/testingSite。ファイルの編集を検討しましたが/etc/hosts、それでは IP アドレスにリダイレクトすることしかできません。これは、localhost ページに独自の IP アドレスがあるとは思わない (そうですか?) ため、機能しません。現在は からページにアクセスできますが、代わりlocalhost/testingSiteに入力できるようになると興味深いです。fakedomainname.dev

ありがとう!

PS ...これは、スタック オーバーフローではなく、Ask Ubuntu に投稿する必要がありますか? それが Ubuntu 固有のものであると十分に考えられるかどうか確信が持てなかったので、ここに投稿しました。間違えたら動かしてください!

4

1 に答える 1

1

リダイレクト先127.0.0.1-- これは localhost と同等です。

/etc/hosts ファイルは次のとおりです。

root@vagrant:~# cat /etc/hosts
127.0.0.1   localhost   stuff.dev
127.0.1.1   vagrant.vm  vagrant

# The following lines are desirable for IPv6 capable hosts
::1     ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

ポート 8000 で実行されているフラスコ アプリがあり、stuff.dev:8000 でアクセスできるようになりました。

root@vagrant:~# wget stuff.dev:8000
--2013-09-13 02:22:14--  http://stuff.dev:8000/
Resolving stuff.dev (stuff.dev)... 127.0.0.1
Connecting to stuff.dev (stuff.dev)|127.0.0.1|:8000... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2 [text/html]
Saving to: ‘index.html’

100%[================================================================================================================================================================>] 2           --.-K/s   in 0s

2013-09-13 02:22:14 (229 KB/s) - ‘index.html’ saved [2/2]
于 2013-09-13T02:04:32.860 に答える