Showing headlines posted by falko

« Previous ( 1 ... 7 8 9 10 11 12 13 14 15 16 17 ... 92 ) Next »

Creating Advanced MySQL-Based Virtual Hosts On Lighttpd (Ubuntu 12.04)

  • HowtoForge; By Falko Timme (Posted by falko on Sep 9, 2012 2:00 PM EDT)
  • Story Type: Tutorial; Groups: Ubuntu
This guide explains how you can create advanced virtual hosts on a lighttpd web server on Ubuntu 12.04 that are stored in a MySQL database. The method described here does not use the lighttpd mod_mysql_vhost module, and unlike mod_mysql_vhost (which allows you to store only the hostname and document root of a vhost in a database), this method allows to store individual configuration directives for each vhost in the MySQL database.

Chrooting Apache2 With mod_chroot On Debian Squeeze

  • HowtoForge; By Falko Timme (Posted by falko on Sep 7, 2012 1:18 PM EDT)
  • Story Type: Tutorial; Groups: Debian
This guide explains how to set up mod_chroot with Apache2 on a Debian Squeeze system. With mod_chroot, you can run Apache2 in a secure chroot environment and make your server less vulnerable to break-in attempts that try to exploit vulnerabilities in Apache2 or your installed web applications.

Serving CGI Scripts With Nginx On Ubuntu 12.04

  • HowtoForge; By Falko Timme (Posted by falko on Sep 6, 2012 8:14 PM EDT)
  • Story Type: Tutorial; Groups: Ubuntu
This tutorial shows how you can serve CGI scripts (Perl scripts) with nginx on Ubuntu 12.04. While nginx itself does not serve CGI, there are several ways to work around this. I will outline three solutions: the first is to proxy requests for CGI scripts to Thttpd, a small web server that has CGI support, while the second and third solution are very similar - both use a CGI wrapper to serve CGI scripts.

Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Ubuntu 12.04)

  • HowtoForge; By Falko Timme (Posted by falko on Sep 5, 2012 4:39 PM EDT)
  • Story Type: Tutorial; Groups: Ubuntu
This guide explains how you can use mod_mysql_vhost to create simple virtual hosts on a lighttpd web server on Ubuntu 12.04. 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.

Running New Shopware Version 4.0.x On Nginx (LEMP) On Ubuntu 12.04

  • HowtoForge; By Falko Timme (Posted by falko on Sep 4, 2012 9:08 AM EDT)
  • Story Type: Tutorial; Groups: Ubuntu
This tutorial shows how you can install and run the new Shopware version 4.0.x on an Ubuntu 12.04 system that has nginx installed instead of Apache (LEMP = Linux + nginx (pronounced "engine x") + MySQL + PHP). Shopware is a feature-rich ecommerce platform; I will use the Community Edition here which is free. nginx is a HTTP server that uses much less resources than Apache and delivers pages a lot of faster, especially static files.

Installing The PHP WebDAV Extension On Debian Squeeze

  • HowtoForge; By Falko Timme (Posted by falko on Sep 3, 2012 5:24 AM EDT)
  • Story Type: Tutorial; Groups: Debian
This article shows how you can install the PHP WebDAV extension for PHP5 on a Debian Squeeze system. The PHP WebDAV extension allows easy access to remote resources through the DAV protocol from PHP scripts.

Virtualization With KVM On A CentOS 6.3 Server

  • HowtoForge; By Falko Timme (Posted by falko on Sep 2, 2012 3:28 PM EDT)
  • Story Type: Tutorial; Groups: Red Hat
This guide explains how you can install and use KVM for creating and running virtual machines on a CentOS 6.3 server. I will show how to create image-based virtual machines and also virtual machines that use a logical volume (LVM). KVM is short for Kernel-based Virtual Machine and makes use of hardware virtualization, i.e., you need a CPU that supports hardware virtualization, e.g. Intel VT or AMD-V.

Installing mod_geoip for Apache2 On Debian Squeeze

  • HowtoForge; By Falko Timme (Posted by falko on Aug 31, 2012 10:58 AM EDT)
  • Story Type: Tutorial; Groups: Debian
This guide explains how to set up mod_geoip with Apache2 on a Debian Squeeze system. mod_geoip looks up the IP address of the client end user. This allows you to redirect or block users based on their country. You can also use this technology for your OpenX (formerly known as OpenAds or phpAdsNew) ad server to allow geo targeting.

Installing Lighttpd With PHP5 (PHP-FPM) And MySQL Support On Fedora 17

  • HowtoForge; By Falko Timme (Posted by falko on Aug 30, 2012 9:50 PM EDT)
  • Story Type: Tutorial; Groups: Fedora
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 17 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.

nginx: How To Block Visitors By Country With The GeoIP Module (Debian/Ubuntu)

This tutorial explains how to use the GeoIP module with nginx to block visitors by country. This is made possible by the GeoIP database which maps users' IP addresses to countries. nginx must be compiled with the HttpGeoipModule to use the GeoIP database.

Virtualization With Xen On CentOS 6.3 (x86_64) (Paravirtualization & Hardware Virtualization)

  • HowtoForge; By Falko Timme (Posted by falko on Aug 29, 2012 6:34 AM EDT)
  • Story Type: Tutorial; Groups: Red Hat
This tutorial provides step-by-step instructions on how to install Xen (version 4.1.x) on a CentOS 6.3 (x86_64) system. Xen lets you create guest operating systems (*nix operating systems like Linux and FreeBSD), so called "virtual machines" or domUs, under a host operating system (dom0). Using Xen you can separate your applications into different virtual machines that are totally independent from each other.

How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 12.04

  • HowtoForge; By Falko Timme (Posted by falko on Aug 27, 2012 11:20 AM EDT)
  • Story Type: Tutorial; Groups: Ubuntu
This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Ubuntu 12.04. 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.

Virtual Hosting With vsftpd And MySQL On Debian Squeeze

  • HowtoForge; By Falko Timme (Posted by falko on Aug 26, 2012 12:54 PM EDT)
  • Story Type: Tutorial; Groups: Debian
Vsftpd is one of the most secure and fastest FTP servers for Linux. Usually vsftpd is configured to work with system users. This document describes how to install a vsftpd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine.

Managing A VirtualBox Installation With phpvirtualbox On nginx (Ubuntu 12.04)

  • HowtoForge; By Falko Timme (Posted by falko on Aug 23, 2012 11:50 AM EDT)
  • Story Type: Tutorial; Groups: Ubuntu
phpvirtualbox is a web-based VirtualBox front-end written in PHP that allows you to access and control remote VirtualBox instances. It tries to resemble the VirtualBox GUI as much as possible to make work with it as easy as possible. It is a nice replacement for the VirtualBox GUI if you run VirtualBox in headless servers. This tutorial explains how to install phpvirtualbox with nginx on an Ubuntu 12.04 server to manage a locally installed, headless VirtualBox.

Creating Advanced MySQL-Based Virtual Hosts On Lighttpd (Debian Squeeze)

  • HowtoForge; By Falko Timme (Posted by falko on Aug 22, 2012 12:29 PM EDT)
  • Story Type: Tutorial; Groups: Debian
This guide explains how you can create advanced virtual hosts on a lighttpd web server on Debian Squeeze that are stored in a MySQL database. The method described here does not use the lighttpd mod_mysql_vhost module, and unlike mod_mysql_vhost (which allows you to store only the hostname and document root of a vhost in a database), this method allows to store individual configuration directives for each vhost in the MySQL database.

Creating Simple Virtual Hosts With mod_mysql_vhost On Lighttpd (Debian Squeeze)

  • HowtoForge; By Falko Timme (Posted by falko on Aug 21, 2012 3:17 PM EDT)
  • Story Type: Tutorial; Groups: Debian
This guide explains how you can use mod_mysql_vhost to create simple virtual hosts on a lighttpd web server on Debian Squeeze. 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.

CentOS 6.3 Samba Standalone Server With tdbsam Backend

  • HowtoForge; By Falko Timme (Posted by falko on Aug 20, 2012 7:51 AM EDT)
  • Story Type: Tutorial; Groups: Red Hat
This tutorial explains the installation of a Samba fileserver on CentOS 6.3 and how to configure it to share files over the SMB protocol as well as how to add users. Samba is configured as a standalone server, not as a domain controller. In the resulting setup, every user has his own home directory accessible via the SMB protocol and all users have a shared directory with read-/write access.

Installing Lighttpd With PHP5 (PHP-FPM) And MySQL Support On CentOS 6.3

  • HowtoForge; By Falko Timme (Posted by falko on Aug 19, 2012 10:20 AM EDT)
  • Story Type: Tutorial; Groups: Red Hat
Lighttpd is a secure, fast, standards-compliant web server designed for speed-critical environments. This tutorial shows how you can install Lighttpd on a Centos 6.3 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.

Managing A Headless VirtualBox Installation With phpvirtualbox (Fedora 17)

  • HowtoForge; By Falko Timme (Posted by falko on Aug 16, 2012 10:10 AM EDT)
  • Story Type: Tutorial; Groups: Fedora
phpvirtualbox is a web-based VirtualBox front-end written in PHP that allows you to access and control remote VirtualBox instances. It tries to resemble the VirtualBox GUI as much as possible to make work with it as easy as possible. It is a nice replacement for the VirtualBox GUI if you run VirtualBox on headless servers. This tutorial explains how to install phpvirtualbox on a Fedora 17 server to manage a locally installed, headless VirtualBox.

Installing mod_geoip for Apache2 On CentOS 6.3

  • HowtoForge; By Falko Timme (Posted by falko on Aug 15, 2012 1:48 PM EDT)
  • Story Type: Tutorial; Groups: Red Hat
This guide explains how to set up mod_geoip with Apache2 on a CentOS 6.3 system. mod_geoip looks up the IP address of the client end user. This allows you to redirect or block users based on their country. You can also use this technology for your OpenX (formerly known as OpenAds or phpAdsNew) ad server to allow geo targeting.

« Previous ( 1 ... 7 8 9 10 11 12 13 14 15 16 17 ... 92 ) Next »