laravel 7 Nginx only serve localhost
-
I only get the localhost default laravel page. try http://localhost/register I get 404 Not Found. Tried a simple route the same error. Check the routes are available.
Thanks.
-
Menu / Nginx / sites-enabled / 00-default.conf
location / {
# try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?$args;
autoindex on;
}