Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Vsevolod Balashov

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

nowww!

set redirect from www.example.com to example.com for nginx web server

server {
    listen       80;
    server_name  example.com www.example.com;
    if ( $host = www.example.com ) {
        rewrite ^\/(.*)$ http://example.com/$1 permanent;
    }

    .....
}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS