A client wants the old .aspx path could redirect the visitor to another URL. I don’t want to make the server to host a .aspx file so i add the redirection in the Nginx virtual host config.
Add the following lines insider the server { … }.
## Special redirect for the following
## old xxx.aspx to eureka.ykyuen.info
location /xxx.aspx {
return 301 $scheme://eureka.ykyuen.info;
}
Done =)

In the 2nd DumpCamp meeting, Ronnie showed us a SAAS service called New Relic which provides Application Performance Management solution mainly for web applications and servers. It’s capabilities include but not limit to:
- Performance analytics on Ruby, Rails, PHP, Java, .Net, Python applications
- Real User Monitoring
- Server Monitoring
- SQL/NoSQL Performance Monitoring
- Web Application Transaction Tracing
The Lite account is free and i tried it today. The setup is easy and straight forward. Just register an account online with some configurations on your web server through SSH. Then you could views your server and web application performance online.
Continue reading DumpCamp – Introduction to New Relic →
Dream BIG and go for it =)