Wave routes
Hi there,
How did you install Wave? Can you share more information about your setup and the exact error that you are getting?
Hi there,
I believe that we just sorted it out via the GitHub discussion. But for future reference this is what we did:
-
I had to change the
APP_ENV
back todev
as if you set it toproduction
it will try to load via HTTPS, but as you are using your server's IP address and do not have an SSL installed, the static resources like CSS, JS and etc. would fail to load. Once you have a domain + SSL you can change the env back toproduction
-
Regarding the routes, I've fixed that by adding the following to your Apache Vhost:
<Directory /var/www/html/public>
Options -Indexes +FollowSymLinks +MultiViews
# Allow .htaccess files
AllowOverride All
Require all granted
</Directory>
This basically allows the use of the .htaccess
file in that directory, which is needed for Laravel to be able to handle its routes.















