Mixed Content LARAVEL PROJECT
Hi, i deployed a laravel 10 project.
Some resources gets loaded over http istead of https.
I also updated the APP_URL in .env from http://localhost to https:// but nothing.
Thanks
8 Replies
Project ID:
934db408-cf4c-42af-ab28-4418274abd65
934db408-cf4c-42af-ab28-4418274abd65
make the requests with https
the http resources gets generated by railway
no they don't
they would get generated by your app
server: {
https: true,
host: '0.0.0.0',
hmr: {
host: 'localhost'
},
update vite config with this maybe?
didn't know vite could have anything to do with laravel
Try adding this to your
AppServiceProvider
boot()
Method.