Linux Tutorials on the topic “ubuntu”

  • Serving CGI Scripts With Nginx On Ubuntu 12.04

    nginx Author: Falko TimmeTags: , , Comments: 1

    Serving CGI Scripts With Nginx On Ubuntu 12.04 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)

    lighttpd Author: Falko TimmeTags: , , , 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.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.

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

    nginx Author: Falko TimmeTags: , , , Comments: 14

    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.

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

    ubuntu Author: Falko TimmeTags: , , , Comments: 3

    How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 12.04 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.

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

    ubuntu Author: Falko TimmeTags: , , , , Comments: 5

    Managing A Headless VirtualBox Installation With phpvirtualbox On nginx (Ubuntu 12.04) 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.

  • The Perfect Desktop - Linux Mint 13 XFCE

    linux_mint Author: CSchTags: , Comments: 4

    The Perfect Desktop - Linux Mint 13 XFCE This tutorial shows how you can set up a Linux Mint 13 (Maya) desktop (with the XFCE desktop) that is a full-fledged replacement for a Windows desktop, i.e. that has all the software that people need to do the things they do on their Windows desktops. The advantages are clear: you get a secure system without DRM restrictions that works even on old hardware, and the best thing is: all software comes free of charge.

  • The Perfect Desktop - Linux Mint 13 KDE

    linux_mint Author: CSchTags: , Comments: 2

    The Perfect Desktop - Linux Mint 13 KDE This tutorial shows how you can set up a Linux Mint 13 (Maya) desktop (KDE version) that is a full-fledged replacement for a Windows desktop, i.e. that has all the software that people need to do the things they do on their Windows desktops. The advantages are clear: you get a secure system without DRM restrictions that works even on old hardware, and the best thing is: all software comes free of charge.

  • Install MyUnity On Linux Mint 13 (Maya)

    linux_mint Author: CSchTags: , Comments: 6

    Install MyUnity On Linux Mint 13 (Maya) This tutorial shows how you can install MyUnity, the extended Unity desktop configuration tool, on Linux Mint 13. MyUnity can usually only be used on Ubuntu operating systems, however you can get it to run under Mint as well with a little source-file customization.

  • How To Configure PureFTPd To Accept TLS Sessions On Ubuntu 10.10

    ubuntu Author: Falko TimmeTags: , , Comments: 7

    How To Configure PureFTPd To Accept TLS Sessions On Ubuntu 10.10 FTP is a very insecure protocol because all passwords and all data are transferred in clear text. By using TLS, the whole communication can be encrypted, thus making FTP much more secure. This article explains how to configure PureFTPd to accept TLS sessions on an Ubuntu 10.10 server.

  • How To Integrate ClamAV Into PureFTPd For Virus Scanning On Ubuntu 12.04

    ubuntu Author: Falko TimmeTags: , , Comments: 1

    How To Integrate ClamAV Into PureFTPd For Virus Scanning On Ubuntu 12.04 This tutorial explains how you can integrate ClamAV into PureFTPd for virus scanning on an Ubuntu 12.04 system. In the end, whenever a file gets uploaded through PureFTPd, ClamAV will check the file and delete it if it is malware.