Download the PHP package filhocodes/laravel-sail-ssl-proxy without Composer
On this page you can find all versions of the php package filhocodes/laravel-sail-ssl-proxy. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download filhocodes/laravel-sail-ssl-proxy
More information about filhocodes/laravel-sail-ssl-proxy
Files in filhocodes/laravel-sail-ssl-proxy
Package laravel-sail-ssl-proxy
Short Description Somewhat easy solution to add SSL to Sail environments
License MIT
Informations about the package laravel-sail-ssl-proxy
FilhoCodes' Laravel Sail SSL Proxy
An easy and ready way to configure a proxy that allows you to host local projects using Laravel Sail via HTTPS.
The design of the SSL proxy was taken from https://dev.to/adrianmejias/how-to-enable-ssl-for-local-development-using-laravel-sail-and-docker-51ee. Basically, Caddy will be executed on top of the Laravel Server, and will generate a local certificate. Then you can add this certificate to your local trusted store.
Quick usage
If you don't have a local installation of PHP and Composer, you can use this alias to execute both via docker
Then you can just prepend the commands bellow with sail81
:
Before setting up the proxy, Laravel Sail shall already be configured in your project. Installations made using the script provided by the Laravel Documentation will already have a Laravel Sail environment. Other than that, you will need to configure it yourself. Please refer to the Laravel Sail Documentation to do so.
With your project using Laravel Sail, require this package using Composer:
Then install the proxy service using the following command:
After that, spin up the development environment:
After your first HTTP request to the application, a certificate will be created at
docker/sail-ssl-proxy/authorities/intermediate.crt
. You can then add this certificate to your trusted store. In Linux,
you may use the command ./vendor/bin/filhocodes-ssl-proxy-trust
to add the certificate to the system store.
If the authorities certificates are generated, but the certificates
directory is empty, this probably means that the
authorization flow was unsuccessful. This will mostly be due to the domain check. By default, we use parse the domain of
the Application URL, defined via the app.url
config (and the default APP_URL
environment variable). If needed, you
can publish our config and update the value via the authorized_domains
config.
You can also set the environment variable FILHOCODES_LARAVEL_SAIL_SSL_PROXY_DEBUG=true
to log the request made to the
authorization controller.