Linux Tutorials on the topic “web server”
-
Installing Lighttpd With PHP5 (PHP-FPM) And MySQL Support On Fedora 18
Author: Falko Timme • Tags: fedora, lighttpd, mysql, php, web server • Comments: 0
Installing Lighttpd With PHP5 (PHP-FPM) And MySQL Support On Fedora 18 Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a Fedora 18 server with PHP5 support (through PHP-FPM) and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites. I use PHP-FPM in this tutorial instead of Lighttpd's spawn-fcgi.
-
Running Contao 3.x On Nginx (LEMP) On Debian Wheezy/Ubuntu 12.10
Author: Falko Timme • Tags: debian, nginx, ubuntu, web server • Comments: 0
Running Contao 3.x On Nginx (LEMP) On Debian Wheezy/Ubuntu 12.10 This tutorial shows how you can install and run a Contao 3.x web site on a Debian Wheezy or Ubuntu 12.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.
-
Using PHP5-FPM With Apache 2.4 (+ mod_proxy_fcgi Module) On Fedora 18
Author: Falko Timme • Tags: apache, fedora, php, web server • Comments: 0
Using PHP5-FPM With Apache 2.4 (+ mod_proxy_fcgi Module) On Fedora 18 This tutorial shows how you can install an Apache 2.4 webserver on a Fedora 18 server with PHP5 (through PHP-FPM) and MySQL support. PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation with some additional features useful for sites of any size, especially busier sites. On Apache 2.4, we need Apache's mod_proxy_fcgi module to make it work.
-
-
Installing Apache2 With PHP5 And MySQL Support On Fedora 18 (LAMP)
Author: Falko Timme • Tags: apache, fedora, mysql, php, web server • Comments: 1
Installing Apache2 With PHP5 And MySQL Support On Fedora 18 (LAMP) LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a Fedora 18 server with PHP5 support (mod_php) and MySQL support.
-
Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On Fedora 18
Author: Falko Timme • Tags: fedora, mysql, nginx, php, web server • Comments: 1
Installing Nginx With PHP5 (And PHP-FPM) And MySQL Support On Fedora 18 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 Fedora 18 server with PHP5 support (through PHP-FPM) and MySQL support.
-
Apache Module For OpenID Authentication
Author: [email protected] • Tags: apache, web server • Comments: 3
Apache Module For OpenID Authentication OpenID is a widely adopted technology for user authentication in web applications. It relies on the concepts of distributed user authentication in blog applications. This small cookbook explains step-by-step how to install and configure the Open Source Apache module mod_auth_oid.
-
Running concrete5 On Nginx (LEMP) On Debian Squeeze/Ubuntu 12.10
Author: Falko Timme • Tags: debian, nginx, ubuntu, web server • Comments: 0
This tutorial shows how you can install and run a concrete5 web site on a Debian Squeeze or Ubuntu 12.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. concrete5 is a free and open-source content management system (CMS).
-
Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Ubuntu 12.10)
Author: Falko Timme • Tags: lighttpd, ubuntu, web server • Comments: 0
This guide explains how you can use mod_mysql_vhost to create simple virtual hosts on a lighttpd web server on Ubuntu 12.10. With mod_mysql_vhost, lighttpd can read the vhost configuration from a MySQL database. Currently, you can store the domain and the document root in the MySQL database which results in very simple virtual hosts. If you need more directives for your vhosts, you'd have to configure them in the global section of lighttpd.conf, which means they'd be valid for all vhosts. Therefore, mod_mysql_vhost is ideal if your vhosts differ only in the domain and document root.
-
How To Set Up Apache2 With mod_fcgid And PHP5 On OpenSUSE 12.2
Author: Falko Timme • Tags: apache, php, suse, web server • Comments: 0
How To Set Up Apache2 With mod_fcgid And PHP5 On OpenSUSE 12.2 This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on OpenSUSE 12.2. 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.
-
Serving CGI Scripts With Nginx On OpenSUSE 12.2
Author: Falko Timme • Tags: suse, web server, nginx • Comments: 0
Serving CGI Scripts With Nginx On OpenSUSE 12.2 This tutorial shows how you can serve CGI scripts (Perl scripts) with nginx on OpenSUSE 12.2. While nginx itself does not serve CGI, there are several ways to work around this. I will outline two solutions: the first is to proxy requests for CGI scripts to Thttpd, a small web server that has CGI support, while the second solution uses a CGI wrapper to serve CGI scripts.