nginx-fix.conf redirect www to non www code example
Example: nginx-fix.conf redirect www to non www
if ($host ~* ^www\.(.*)$) {
rewrite / $scheme://$1 permanent;
}
if ($host ~* ^www\.(.*)$) {
rewrite / $scheme://$1 permanent;
}