Hi Bobby,

My guess is this isn't a Vagrant problem, but I'm not sure because your 
problem statement is too vague. So it would be very helpful to make it more 
precise.
Are you familiar with the curl command? Instead of trying to access your 
webpage with a browser, use curl and post the output.
E.g. run curl against google.com

`curl -Iv http://google.com` produces the following output,

```
$ curl -Iv http://google.com
*   Trying 172.217.164.238...
* TCP_NODELAY set
* Connected to google.com (172.217.164.238) port 80 (#0)
> HEAD / HTTP/1.1
> Host: google.com
> User-Agent: curl/7.64.1
> Accept: */*
>
< HTTP/1.1 301 Moved Permanently
HTTP/1.1 301 Moved Permanently
< Location: http://www.google.com/
Location: http://www.google.com/
< Content-Type: text/html; charset=UTF-8
Content-Type: text/html; charset=UTF-8
< Date: Tue, 21 Apr 2020 16:11:39 GMT
Date: Tue, 21 Apr 2020 16:11:39 GMT
< Expires: Thu, 21 May 2020 16:11:39 GMT
Expires: Thu, 21 May 2020 16:11:39 GMT
< Cache-Control: public, max-age=2592000
Cache-Control: public, max-age=2592000
< Server: gws
Server: gws
< Content-Length: 219
Content-Length: 219
< X-XSS-Protection: 0
X-XSS-Protection: 0
< X-Frame-Options: SAMEORIGIN
X-Frame-Options: SAMEORIGIN

<
* Connection #0 to host google.com left intact
* Closing connection 0
```

So similar to my example, your Laravel VM provides a website (just like 
google), if you hit the website with curl what is the output?


On Tuesday, 21 April 2020 09:43:25 UTC-4, Bobby Walters wrote:
>
> Hello,
>
> I've been having problems with Vagrant VM rendering empty HTML pages in 
> browser. I have just created a fresh, empty Laravel project and tried to 
> access it. Even that gives me an empty HTML page. Has anyone experienced 
> this? What could be causing it? Any help would be appreciated! Thank you!
>

-- 
This mailing list is governed under the HashiCorp Community Guidelines - 
https://www.hashicorp.com/community-guidelines.html. Behavior in violation of 
those guidelines may result in your removal from this mailing list.

GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
--- 
You received this message because you are subscribed to the Google Groups 
"Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to vagrant-up+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/dc8f07c2-3308-4ef6-bc86-89e8260f3107%40googlegroups.com.

Reply via email to