Last active
January 28, 2022 16:24
-
-
Save brickgale/f903c2c98ab501d2e604a3c18c3fb115 to your computer and use it in GitHub Desktop.
Laravel force https for Heroku
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#add this on public/.htaccess for Laravel | |
RewriteCond %{HTTPS} !=on | |
RewriteCond %{HTTP:X-Forwarded-Proto} !https | |
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
web: vendor/bin/heroku-php-apache2 public/ |
thanks i get the solution https://gist.github.com/ilhamsj/819369a56bb983eac018c5f4e04cda50
Nice one!
ahh, okay. i was working with lower version of laravel (5.1-5.3) when i made this. Good catch! It was just a middleware problem. Thanks @danielrob!
This is gold. Thanks @brickgale. You saved my weekend!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was ages ago, but https://laravel.com/docs/5.8/requests#configuring-trusted-proxies (
protected $proxies = '*';
) was the breakthrough I remember when I was working in this area. Perhaps I used this to force https, but let the trusted proxies declaration sort out the problems with heroku request forwarding.