1

I am using Laravel Sail and I am trying to share my site for testing. It works fine. The website can be accessed using the url generated from sail share. What I want to happen is to use SSL while sharing the test website.

I have tried searching around but I did not get the answer for this. I was only given links to another website but it does not help because Laravel Sail is using containers. If possible, a guide would be helpful.

Cheers!

Patrick
  • 341
  • 1
  • 7
  • 19

1 Answers1

0

You can find this information on https://beyondco.de/docs/expose/client/configuration

Apparantly this is default behaviour when you configure expose (the underlying technique of Laravel Sail) to use port 443.

online Thomas
  • 8,864
  • 6
  • 44
  • 85
  • I have read the documentation over and over but I am not sure how to integrate this with Laravel Sail. Do you have detailed instructions for this? – Patrick May 21 '21 at 02:16
  • If you cannot make it work with the built in `share` (using expose) you might want to consider using `ngrok`. I can guarantee it works out of the box – online Thomas May 21 '21 at 06:09