Skip to content

Instantly share code, notes, and snippets.

@morrislaptop
Created November 24, 2019 13:32
Show Gist options
  • Save morrislaptop/cb47e855f3e7a513e831056baae3143f to your computer and use it in GitHub Desktop.
Save morrislaptop/cb47e855f3e7a513e831056baae3143f to your computer and use it in GitHub Desktop.
if ($http_x_forwarded_proto != 'https') {
rewrite ^ https://$host$request_uri? permanent;
}
location / {
try_files $uri @rewriteapp;
}
location @rewriteapp {
rewrite ^(.*)$ /index.php$1 last;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment