Linux Tutorials on the topic “web server”
-
Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On CentOS 6.2
Author: Falko Timme • Tags: centos, nginx, web server • 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.
-
How To Set Up WebDAV With Lighttpd On Debian Squeeze
Author: Falko Timme • Tags: debian, lighttpd, storage, web server • Comments: 2
How To Set Up WebDAV With Lighttpd On Debian Squeeze This guide explains how to set up WebDAV with lighttpd on a Debian Squeeze server. WebDAV stands for Web-based Distributed Authoring and Versioning and is a set of extensions to the HTTP protocol that allow users to directly edit files on the lighttpd server so that they do not need to be downloaded/uploaded via FTP. Of course, WebDAV can also be used to upload and download files.
-
The Perfect Server - Debian Squeeze (Debian 6.0) With BIND, Dovecot & Nginx [ISPConfig 3]
Author: djh-compnet • Tags: control panels, debian, ispconfig, nginx, web server • 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 Set Up Apache2 With mod_fcgid And PHP5 On Debian Squeeze
Author: Falko Timme • Tags: apache, debian, php, web server • Comments: 2
How To Set Up Apache2 With mod_fcgid And PHP5 On Debian Squeeze This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Debian Squeeze. mod_fcgid is a compatible alternative to the older mod_fastcgi. It lets you execute PHP scripts with the permissions of their owners instead of the Apache user.
-
Installing Apache2 With PHP5 And MySQL Support On CentOS 6.2 (LAMP)
Author: Falko Timme • Tags: apache, centos, web server • Comments: 18
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a CentOS 6.2 server with PHP5 support (mod_php) and MySQL support.
-
How To Save Traffic With nginx's HttpGzipModule (Debian Squeeze)
Author: Falko Timme • Tags: debian, nginx, web server • 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
Author: Falko Timme • Tags: nginx, web server • 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)
Author: Falko Timme • Tags: debian, nginx, php, ubuntu, web server • 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.
-
Using GeoIP With Nginx On Debian Squeeze/Ubuntu 11.04
Author: Falko Timme • Tags: debian, nginx, ubuntu, web server • Comments: 0
Using GeoIP With Nginx On Debian Squeeze/Ubuntu 11.04 This tutorial explains how to use the GeoIP module with nginx on Debian Squeeze/Ubuntu 11.04 to find out where your visitors come from. The GeoIP module sets multiple variables like $geoip_country_name, $geoip_country_code, $geoip_city, etc. that you can use in your PHP scripts or directly in your nginx configuration, for example to serve content in different languages based on the user's country.
-
Running Mailman On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.04/11.10
Author: Falko Timme • Tags: debian, email, nginx, ubuntu, web server • Comments: 2
Running Mailman On Nginx (LEMP) On Debian Squeeze/Ubuntu 11.04/11.10 The Mailman package from the Debian/Ubuntu repositories comes with a configuration for Apache, but not for nginx. This tutorial shows how you can use the Debian Squeeze/Ubuntu 11.04/11.10 Mailman package in an nginx vhost. Nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.