20. June 2009

0 Comments

Finding out what httpd a website uses

Have you ever wanted to know what httpd a website is using but didn't know how? this tutorial will be able to show you. You can simply find out the httpd by viewing the servers header. To view the headers we need curl you can install it by running the following command apt-get install curl [...]

Continue reading...

19. June 2009

0 Comments

How To Install WordPress (From Command line)

Okay, this tutorial will show you how to very easily install WordPress on your own server from the command line. First step is to make a MySQL database, user and permissions for that user. Secondly, you go to the directory that you want to put WordPress in and get the files: wget http://www.wordpress.org/latest.zip unzip wordpress-*.zip [...]

Continue reading...

19. June 2009

0 Comments

Setting up a virtual machine on VirtualBox

First of all, you should download VirtualBox from here. 1. Starting off at the setup Wizard, press Next. 2. Accept the license agreement. 3. The location.

Continue reading...

16. June 2009

3 Comments

Setting up a IRCD Server

Preparing the server To compile unrealircd you need to install some software. First off resynchronize the package index files sudo apt-get update Then we need to install compiling tools sudo apt-get install build-essential If you want SSL your going to need to install openssl sudo apt-get install openssl libssl-dev It is not recommended to run [...]

Continue reading...

13. June 2009

0 Comments

Lighttpd virtual hosting

Virtual hosting allows you to host many websites from one server. Setup The Folders and users adduser domain1 addgroup domain1 adduser www-data domain1 mkdir -p /home/domain1 chown domain1:domain1 -R /home/domain1 chmod 750 -R /home/domain1 adduser domain2 addgroup domain2 adduser www-data domain2 mkdir -p /home/domain2 chown domain2:domain2 -R /home/domain2 chmod 750 -R /home/domain2 Lighttpd Config Open [...]

Continue reading...
Page 8 of 12« First...678910...Last »