Tag Archives: apache
CloudServers: Creating a new web server with httpd, php & memcached
Creating a new web server is piece of cake at Rackspace Cloud. Here is a demo video of how to set up a new instance with your favorite Linux distribution. I have used Fedora 12 for my new spaniards.es servers, and here is the script I’ve used to install everything needed so far: # Install [...]
Got new servers on Rackspace Cloud
Last night I got an account at Rackspace Cloud and created three brand new CentOS Linux servers. Now I have to set them up: two web servers and one database server. My goal: Move Spaniards.es website to this new hosting. Why move? Currently I am hosting Spaniards.es on two dedicated servers at Ace-Host.net. So far, [...]
Moved research to enekoalonso.com
You shouldn’t notice it, but I have moved all my research demos from dev.enekoalonso.com/research to enekoalonso.com/research. It is just a little change, but will help keeping things more organized, I think. To avoid breaking old links, I have added a 301 redirect: Options +FollowSymLinks RewriteEngine on # For http://dev.enekoalonso.com/research RewriteCond %{REQUEST_URI} ^/research$ RewriteRule .* [...]
Enabling PHP5 on Mac OS X Leopard
I had done this already at work, but for some reason my MacBook Pro still didn’t “understand” PHP. Well, I’ve decided it’s time to activate it: # Use your favorite editor mate /etc/apache2/httpd.conf # Uncomment the line: #LoadModule php5_module libexec/apache2/libphp5.so # Restart apache sudo apachectl restart Done.