Drupal7 nginx ssl
Posted by bailsbails on February 1, 2012 at 9:53am
Hi
I'm trying to get a drupal7 site setup on nginx with everything served via https, with http doing a global rewrite e.g.
server {
server_name mysite.fqdn;
listen :80;
rewrite ^/(.)$ https://mysite.fqdn/$1 permanent;
}