$ docker --version): 17.12.0-ce, build c97c6d6$ git rev-parse HEAD): 0c41fceae1b23089f5360dc4f8aeb85719c7bf5a404 not found error when going to http://localhost/ after following the getting started guide
Be able to see my index.html or index.php file that I created in the project folder
I bashed into workspace and nginx and both containers can see the index.html file at /var/www/
I know this question is pretty basic. But if following the getting started guide doesn't get a user up and running maybe something needs to be changed.
EDIT: I moved a laravel app to the folder and it does work as expected! If somebody can explain what I am missing I'd greatly appreciate it.
nginx' webroot is configured to be /var/www/public, which maps to ../public, relative to laradock's root. A Laravel installation in the parent directory would have this directory, but your basic test fails. Had the same issue just recently ;-)
Most helpful comment
nginx' webroot is configured to be
/var/www/public, which maps to../public, relative to laradock's root. A Laravel installation in the parent directory would have this directory, but your basic test fails. Had the same issue just recently ;-)