Open the homestead.app
file
$ sudo vi /etc/nginx/sites-enabled/homestead.app
Add autoindex on
in the location block
location / {
autoindex on;
autoindex_exact_size off;
autoindex_localtime on;
try_files $uri $uri/ /index.php?$query_string;
}
Restart Nginx
$ sudo service nginx reload