Running Contao 3.x On Nginx (LEMP) On Debian Wheezy/Ubuntu 12.10
|
Submitted by falko (Contact Author) (Forums) on Thu, 2013-01-31 17:54. :: Debian | Ubuntu | Web Server | nginx
Running Contao 3.x On Nginx (LEMP) On Debian Wheezy/Ubuntu 12.10Version 1.0 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. I do not issue any guarantee that this will work for you!
1 Preliminary NoteI want to install Contao in a vhost called www.example.com/example.com here with the document root /var/www/www.example.com/web. You should have a working LEMP installation, as shown in this tutorial: A note for Ubuntu users: Because we must run all the steps from this tutorial with root privileges, we can either prepend all commands in this tutorial with the string sudo, or we become root right now by typing sudo su
2 Installing APCAPC is a free and open PHP opcode cacher for caching and optimizing PHP intermediate code. It's similar to other PHP opcode cachers, such as eAccelerator and XCache. It is strongly recommended to have one of these installed to speed up your PHP page. APC can be installed as follows: apt-get install php-apc Reload PHP-FPM as follows: /etc/init.d/php5-fpm reload
3 Installing ContaoThe document root of my www.example.com web site is /var/www/www.example.com/web - if it doesn't exist, create it as follows: mkdir -p /var/www/www.example.com/web Next we download Contao (the .tar.gz version) from http://www.contao.org/download.html and place it in our document root: cd /tmp It is recommended to make the document root and the Contao files in it writable by the nginx daemon which is running as user www-data and group www-data: chown -R www-data:www-data /var/www/www.example.com/web If you haven't already created a MySQL database for Contao (including a MySQL Contao user), you can do that as follows (I name the database contao in this example, and the user is called contao_admin, and his password is contao_admin_password): mysqladmin -u root -p create contao mysql -u root -p GRANT ALL PRIVILEGES ON contao.* TO 'contao_admin'@'localhost' IDENTIFIED BY 'contao_admin_password'; FLUSH PRIVILEGES; quit; Next we create an nginx vhost configuration for our www.example.com vhost in the /etc/nginx/sites-available/ directory as follows: vi /etc/nginx/sites-available/www.example.com.vhost
Next make sure you have the following line in /etc/nginx/mime.types: vi /etc/nginx/mime.types
To enable the vhost, we create a symlink to it from the /etc/nginx/sites-enabled/ directory: cd /etc/nginx/sites-enabled/ Reload nginx for the changes to take effect: /etc/init.d/nginx reload Now we can launch the web-based Contao installer by going to http://www.example.com/contao/install.php - first you have to accept the Contao license (LGPL) : To make sure that noone else can access the Contao installer in the future, provide a password for the installer (in addition to that, you can delete contao/install.php after successful installation): Next fill in the database details and click on Save database settings:
|







Recent comments
8 hours 59 min ago
9 hours 58 min ago
13 hours 45 min ago
14 hours 59 min ago
18 hours 36 min ago
1 day 1 hour ago
1 day 10 hours ago
1 day 12 hours ago
2 days 3 hours ago
2 days 5 hours ago