May 272011
 

Today, I will not talk about the technical, tutorial or howto. yesterday I was speaking with friends about the layout of my website. she said my website is too “messy”, hard to find the main content. indeed, from the first time since making these blogs, I only use themes that were modified from existing themes.

I have a bad habit, that if something I have not been damaged, I’m not going to replace with new one. Usually I will only slightly modify here and there. my friend’s statement about how ugly my site layout certainly makes me think to replace with new themes. hard to find a suitable new themes for my blog. I like themes with white color dominates the entire page. things that I have to consider is:

  • My sidebar will be overwritten.
  • Verify if my plugins still work.
  • My Ads design and layout.
  • Lot of things that i don’t know yet.

So, here’s a new one. 🙂

May 022011
 

Like many other reverse proxying mechanism, the configuration is quite simple. All we need is just website that’s lived in ipv4, and Nginx with IPv6 capabled network.

        server {
                listen       [::]:80;  # your server's public IP address
                server_name  www.example.com;      # your domain name
                access_log  /var/log/nginx/www.example.com-access.log  main;

                location / {
                        proxy_pass         http://www.example.com/; # live webiste on IPV4
                        proxy_redirect     off;
                        proxy_set_header   Host             $host;
                        proxy_set_header   X-Real-IP        $remote_addr;
                        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;

                }
        }