nginx

  • CentOS

    How To Install WordPress with nginx on Centos 6

    So far I have written how to install LEMP server (nginx, mysql, php-fpm) on centos. If you are planning to use WordPress with your LEMP server (nginx, mysql, php-fpm) stack, I will show you How To Install WordPress with nginx on Centos in this article. Follow up previous article How to install LEMP web server with Nginx, PHP-FPM 5.5, MySQL 5.5 on…

  • Security

    How to secure Nginx web server

    Nam Huy Linux is using Nginx because Nginx is a great lightweight and high performace web server/reverse proxy server. Nginx is the second most popular webserver just after Apache web server, there are many popular sites using Nginx like Wikipedia, Sina, Weibo, Yahoo, Reddit, Tumblr, Worpress… Nginx can easily handle thousands inactive HTTP connections with very low memory consumption. In this…

  • CentOSnamhuy_nginx_epel

    How to install LEMP web server with Nginx, PHP-FPM 5.6, MySQL 5.5 on Centos 7

    Nginx is one of the most popular web server widely used by many popular websites like facebook, intel, cloudflare, hulu, netflix, dropbox, and more. Unlike Apache web server, nginx is a very light weight web server and proxy server yet comes with the same or even better features. Nginx does not create new process for each http request like Apache…

  • Securityhttps_nginx_namhuy

    How to create and install self-signed SSL certificate on Nginx in CentOS 6

    Google starts to love https from months back and recommends all websites to be encrypted with SSL over HTTP. Rumor said google gives higher rank to those websites have https than websites without ssl. If you have budget, go ahead and buy signed certificates comodo, geotrust, thawte, godaddy, symantec, etc… If you just want to have SSL for testing servers…

  • CentOS

    How to install LEMP Server (Nginx 1.8, MariaDB 10.1, PHP-FPM 7) on CentOS 7

    LEMP stacks are an open source platform for applications that is compatible with the LAMP (refers to a Linux-based operating system, the Apache web server, the MySQL database server, and the PHP programming language). LEMP replaces Apache with Nginx which is  light-weight and its ability to scale easily on minimal hardware. This tutorial (How to install LEMP Server (Nginx 1.8,…

  • How to install LEMP web server with Nginx, PHP-FPM 5.5, MySQL 5.5 on Centos Linux

    I have shown you How to install LEMP server with Linux, Nginx, PHP-FPM, and MySQL on Centos with standard packages from Centos repository, which comes with older version of PHP 5.3.x and MySQL 5.1.x. Since there are many new great features from PHP 5.5.x and MySQL 5.5.x which I mentioned in How to install LAMP server with Apache 2.2, MySQL 5.5.37, PHP 5.5.11…

  • CentOS

    How to install LEMP server with Linux, Nginx, PHP-FPM, and MySQL on Centos

    Similar to the LAMP server (Linux, Apache, MySQL, PHP) stack, LEMP Server (Linux, Nginx or engine-x, MySQL, PHP-FPM or PHP-FastCGI) is an alternative stack of open source software for web server. Unlike Apache, Nginx can increase web server scalability by optimize the web server hardware resources (cpu, memory…) which lead to a very cost effective architecture. Normally Apache creates a new process/thread…

  • 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.…

  • CentOS

    How to install nginx on centos

    How can I install Nginx web server On CentOS Linux 6 or Red Hat? Nginx is faster at serving static files and consumes much less memory for concurrent requests because Nginx is event-based it doesn’t need to spawn new processes or threads for each request, so its memory usage is very low. Add nginx yum repository nano /etc/yum.repos.d/nginx.repo add this…

Back to top button