June 2011
4 posts
2 tags
Aleksandar Savic - Nginx redirect www.example.com... →
server { server_name example.com; rewrite ^(.*) http://www .example.com$1 permanent; } server { server_name www .example.com; #Put here your domain hosting configuration. } » Just switched to using Nginx instead of Apache for my personal hosting. I’m surprised by how much quicker it responds and how much nicer the syntax is. I’ll probably log a few more of these...
Jun 30th
11 notes
1 tag
Capifony: Deploy Your Symfony Application... →
I’m currently using Symfony2 for a side project and was thinking about using Phing for deployment… However, now I’m considering Capifony. I’m surprised by the quality of support software available for Symfony. It may become my go to PHP framework in the future…
Jun 22nd
1 note
1 tag
symfony2 Blog Application Tutorial →
» There needs to to be more tutorials on symfony2. From what I’ve played with so far, I’m loving it. The only problem is the lack of documentation and tutorials beyond basic, cookie-cutter functionality. In fact, I found this blog trying to figure out how to get my security-model tied to a doctrine2 entity. 
Jun 22nd
1 note
Use Phing to update your SVN-version-controlled...
I use Python’s Fabric at work, but for my next project, Phing looks interesting. phpandme: If you’re working on a PHP project, like with any other project, probably comes a time when you need to “build a new release,” e.g. update the production web site with the latest version of the code. And doing the whole thing manually isn’t the most efficient way to get things done, especially if...
Jun 20th
11 notes