teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

追記

2019/02/12 05:55

投稿

Gr.
Gr.

スコア89

title CHANGED
File without changes
body CHANGED
@@ -31,4 +31,28 @@
31
31
 
32
32
  これってつまり、Tera Termで書いている方が何らかの問題でhttpsにつながっていないということだと思うのですが、根本原因は何なのでしょう?
33
33
 
34
- コマンドプロンプトとTera Termの違いすらおぼつかない初心者ですが、解決のヒントをいただけると幸いです。
34
+ コマンドプロンプトとTera Termの違いすらおぼつかない初心者ですが、解決のヒントをいただけると幸いです。
35
+
36
+
37
+ ### 以下、追記
38
+
39
+ ```Vagrantfile
40
+ # Create a forwarded port mapping which allows access to a specific port
41
+ # within the machine from a port on the host machine. In the example below,
42
+ # accessing "localhost:8080" will access port 80 on the guest machine.
43
+ config.vm.network "forwarded_port", guest: 3000, host: 3000
44
+
45
+ # Create a private network, which allows host-only access to the machine
46
+ # using a specific IP.
47
+ config.vm.network "private_network", ip: "192.168.33.10"
48
+
49
+ # Create a public network, which generally matched to bridged network.
50
+ # Bridged networks make the machine appear as another physical device on
51
+ # your network.
52
+ # config.vm.network "public_network"
53
+ ```
54
+
55
+ > >vagrant ssh
56
+ IP address for eth0: 10.0.2.15
57
+ IP address for eth1: 192.168.33.10
58
+ Last login: Mon Feb 11 22:47:17 2019 from 10.0.2.2