Linux Tutorials on the topic “nginx”

  • Running SugarCRM Community Edition On Nginx (LEMP) on Debian Squeeze/Ubuntu 11.04

    nginx Author: Falko TimmeTags: , , , Comments: 3

    Running SugarCRM Community Edition On Nginx (LEMP) on Debian Squeeze/Ubuntu 11.04 SugarCRM is a webbased CRM solution written in PHP. SugarCRM is available in different flavours called "Editions" ("Community" (free), "Professional", and "Enterprise"). In this tutorial I will describe the installation of the free Community Edition on a Debian Squeeze or Ubuntu 11.04 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). With the modules My Portal, Calendar, Activities, Contacts, Accounts, Leads, Opportunities, Cases, Bugtracker, Documents and Email, SugarCRM Community Edition offers everything that can be expected from a CRM solution.

  • Running Contao 2.10.2 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10

    nginx Author: Falko TimmeTags: , , , Comments: 0

    Running Contao 2.10.2 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10 This tutorial shows how you can install and run a Contao 2.10.2 web site on a Debian Squeeze or Ubuntu 11.10 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.

  • Running Joomla 1.7 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10

    nginx Author: Falko TimmeTags: , , , Comments: 2

    Running Joomla 1.7 On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.10 This tutorial shows how you can install and run a Joomla 1.7 web site on a Debian Squeeze or Ubuntu 11.10 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.

  • Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On Ubuntu 11.10

    ubuntu VMWare Image Download Author: Falko TimmeTags: , , , , Comments: 4

    Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On Ubuntu 11.10 Nginx (pronounced "engine x") is a free, open-source, high-performance HTTP server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. This tutorial shows how you can install Nginx on an Ubuntu 11.10 server with PHP5 support (through PHP-FPM) and MySQL support.

  • Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On CentOS 6.0

    apache VMWare Image Download Author: Falko TimmeTags: , , , , Comments: 9

    Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On CentOS 6.0 Nginx (pronounced "engine x") is a free, open-source, high-performance HTTP server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. This tutorial shows how you can install Nginx on a CentOS 6.0 server with PHP5 support (through PHP-FPM) and MySQL support.

  • Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On CentOS 6.2

    apache Author: Falko TimmeTags: , , Comments: 1

    Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On CentOS 6.2 Nginx (pronounced "engine x") is a free, open-source, high-performance HTTP server. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. This tutorial shows how you can install Nginx on a CentOS 6.2 server with PHP5 support (through PHP-FPM) and MySQL support.

  • The Perfect Server - Debian Squeeze (Debian 6.0) With BIND, Dovecot & Nginx [ISPConfig 3]

    debian Author: djh-compnetTags: , , , , Comments: 21

    The Perfect Server - Debian Squeeze (Debian 6.0) With BIND, Dovecot & Nginx [ISPConfig 3] This tutorial shows how to prepare a Debian Squeeze (Debian 6.0) server for the installation of ISPConfig 3, and how to install ISPConfig 3. ISPConfig 3 is a webhosting control panel that allows you to configure the following services through a web browser: nginx or Apache web server, Postfix mail server, MySQL, BIND nameserver, PureFTPd, SpamAssassin, ClamAV, and many more. The idea is to use the fast and memory efficient nginx web server and Dovecot which is also said to be more memory efficient. You will need to use the Dotdeb repository for nginx.

  • How To Save Traffic With nginx's HttpGzipModule (Debian Squeeze)

    debian Author: Falko TimmeTags: , , Comments: 0

    How To Save Traffic With nginx's HttpGzipModule (Debian Squeeze) In this tutorial I will describe how to configure HttpGzipModule on an nginx web server (on Debian Squeeze). HttpGzipModule allows nginx to compress files and deliver them to clients (e.g. browsers) that can handle compressed content which most modern browsers do. With HttpGzipModule, you can compress HTML, CSS, Javascript, text or XML files to approx. 20 - 30% of their original sizes, thus saving you server traffic and making your modem users happier.

  • Basic HTTP Authentication With Nginx

    nginx Author: Falko TimmeTags: , Comments: 9

    Basic HTTP Authentication With Nginx This tutorial shows how you can use basic HTTP authentication with Nginx to password-protect directories on your server or even a whole website. This is the Nginx equivalent to basic HTTP authentication on Apache with .htaccess/.htpasswd.

  • PHP-FPM/Nginx Security In Shared Hosting Environments (Debian/Ubuntu)

    nginx Author: Falko TimmeTags: , , , , Comments: 7

    PHP-FPM/Nginx Security In Shared Hosting Environments (Debian/Ubuntu) If you want to use nginx and PHP-FPM for shared hosting environments, you should make up your mind about security. In Apache/PHP environments, you can use suExec and/or suPHP to make PHP execute under individual user accounts instead of a system user like www-data. There's no such thing for PHP-FPM, but fortunately PHP-FPM allows us to set up a "pool" for each web site that makes PHP scripts execute as the user/group defined in that pool. This gives you all the benefits of suPHP, and in addition to that you don't have any FTP or SCP transfer problems because PHP scripts don't need to be owned by a specific user/group to be executed as the user/group defined in the pool.