Я только что развернул свое приложение на сервере AMI ec2 и, следуя некоторым учебникам, попал к одному, который объясняет, как изменять config / app.php, например:
/*
|--------------------------------------------------------------------------
| Application URL
|--------------------------------------------------------------------------
|
| This URL is used by the console to properly generate URLs when using
| the Artisan command line tool. You should set this to the root of
| your application so that it is used when running Artisan tasks.
|
*/
'url' => env('APP_URL', 'http://52.67.251.19/'),
... и измените httpd.conf следующим образом:
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "/var/www/html/nnid/public/"
#
# Relax access to content within /var/www.
#
<Directory "/var/www/nnid/public/">
AllowOverride None
# Allow open access:
Require all granted
</Directory>
Но все страницы, кроме целевой страницы, НЕ НАЙДЕНЫ. Есть намеки?