apache

  • Debian

    How to setup a LAMP server Linux, Apache, MySQL, PHP on Debian 7 wheezy Linux

    LAMP stands for Linux, Apache, MySQL, and PHP (P can be replaced with Perl Or Python). I’m going to show you how to install a standard full-featured LAMP server on Debian 7 Wheezy system. Apache is the most popular web server in the world which more than 50% of web servers in the world are running it. I will use…

  • How to install LAMP server with Apache 2.2, MySQL 5.5.37, PHP 5.5.11 on Centos Linux

    I have shown you how to setup a LAMP server Linux, Apache, MySQL, PHP on Centos 6 before with default CentOS Provided Repositories CentOS-Base.repo. Hate it or love it, Apache web server has 55% market share which nginx or IIS (Microsoft) can’t beat it yet. By default Centos 6.5 will install: Apache 2.2.15 http HyperText Transfer Protocol web server MySQL 5.1.73 database…

  • Server

    How to setup a LAMP server Linux, Apache, MySQL, PHP on Ubuntu 14.04 LTS

    Ubuntu 14.04 Trusty LTS had been released not long ago. Ubuntu 14.04 is a LTS (long term support) means it’s very stable which is very good to setup a LAMP server Linux, Apache, MySQL, PHP. LAMP stands for Linux, Apache, MySQL, and PHP (P can be replaced with Perl Or Python). I’m going to show you how to install a…

  • Tips – Tricks

    Show real original IP for wordpress and phpbb with cloudflare

    I have been using cloudflare for Nam Huy Linux for while and I have to say cloudflare helps my website to reduce request and speed up my website by distribute static files to visitors globally with CDN (content delivery network). They have 24 locations around the world right now from Asian, North America and Europe. A bonus plus with cloudflare…

  • CentOS

    How to setup a LAMP server Linux, Apache, MySQL, PHP on Centos 6 VPS

    VPS is basically a virtual server or “container” on a larger dedicated server. You will have full control/access (reinstall OS, start/stop/reboot, full root access and such) of your VPS just the same as real dedicated server but with much lower cost since you share the real dedicated server with other people. I will show you how to setup a LAMP…

  • Tips – Tricks

    How to install mod_rewrite on Ubuntu

    mod_rewrite will not be isntalled by default when you install apache web server and php on Ubuntu. To use mod_rewrite on ubuntu you can use the the following command in the terminal # a2enmod rewrite Restart apache2 server # /etc/init.d/apache2 restart you can use the following sample .htaccess file <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}…

  • CentOS

    How to install nginx by compiling source

    Nginx is an open source, fast, light weight and highly customable web server that is similar to Apache. Unfortunately configuring and setting him up is not that easy compared to Apache. nginx is both web server and reverse proxy server. Modules can not be loaded later via a config file like Apache modules, they must be compiled into the Nginx binary.…

Back to top button