Skip to content

The how to article below describes installing the usual components for the LAMP stack (Linux, Apache, MySQL, and PHP), however the Apache part is exchanged for Nginx.

Make sure the apt sources are up to date before installing:

$ sudo apt-get update

MySQL Configuration

Install MySQL:

$ sudo apt-get install -y mysql-server mysql-client

You will be asked to enter a “root” password for the MySQL server. Generate a strong password, type it in, and keep note of it for future reference.

PHP Configuration

To use PHP with Nginx, you require the PHP5-CGI package. Install PHP with php5-cgi and any other modules that you may require:

$ sudo apt-get install -y php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick \
php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-ps php5-pspell php5-recode \
php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl php5-json

Note: You can modify the above command to add/remove individual PHP packages if needed. The php5-cgi package is however required when used with Nginx.

Download and set up the php-fastcgi init script for Ubuntu, using the following commands:

$ cd /etc/init.d
$ sudo wget -O php-fastcgi http://www.networkinghowtos.com/wp-content/uploads/scripts/php-fastcgi
$ sudo chmod +x php-fastcgi
$ sudo update-rc.d -f php-fastcgi defaults

The source for this file and more details can be found on the following page:
http://www.networkinghowtos.com/howto/ubuntu-php-fastcgi-init-script/

Start (or Restart) PHP Fast CGI:

$ sudo /etc/init.d/php-fastcgi restart

NGiNX Configuration

Install Nginx:

$ sudo apt-get install -y nginx

Edit the Nginx configuration file so that it knows what to do with .PHP files:

$ sudo nano /etc/nginx/sites-available/default

There will be a section with the heading starting with “pass the PHP scripts to FastCGI server” as seen below:

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        #location ~ \.php$ {
                #fastcgi_pass   127.0.0.1:9000;
                #fastcgi_index  index.php;
                #fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
                #includefastcgi_params;
        #}

Uncomment the lines as shown below, and modify the “fastcgi_param” line to reflect your website folder path. In my example I am using /var/www.

Also take note of the space added to the “include” line. For some reason the example code in the config file was missing the space. Add this space (or tab) as per the below example.

        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
        #
        location ~ \.php$ {
                fastcgi_pass   127.0.0.1:9000;
                fastcgi_index  index.php;
                fastcgi_param  SCRIPT_FILENAME  /var/www$fastcgi_script_name;
                include fastcgi_params;
        }

Save and exit the editor.

Please note that there could be potential security issues with this generic base configuration (particularly if you are running a publicly accessible website, and allow file uploads). If you would like further information on this, please read the blog post at https://nealpoole.com/blog/2011/04/setting-up-php-fastcgi-and-nginx-dont-trust-the-tutorials-check-your-configuration/ and also read through the Nginx documentation.

Start Nginx:

$ sudo /etc/init.d/nginx start

Conclusion and Testing

Create a .php file containing the following PHP code and save it in your website folder and call it test.php (/var/www/test.php in my example.):

1 <?php
2    phpinfo();
3 ?>

Load up your site in a browser, and add the file /test.php to the url, and make sure it comes up with the usual PHP information page, and not just the source code for the .php file you created.

You should now have a working Nginx, PHP, and MySQL stack. Read the Nginx documentation for more detailed configuration options.

The Nginx documentation can be found on the Nginx website at http://nginx.org/

profile

일요일은 짜빠게뤼~ 먹는날~^^

엮인글 :
http://adminplay.com/193433/360/trackback
List of Articles
번호 제목 글쓴이 날짜 조회 수sort
307 grep 옵션, egrep 옵션 차이점 ADMINPLAY 2010-02-17 26266
306 리눅스 파일/디렉토리 개수 알기 ADMINPLAY 2010-05-19 26207
305 rsync : protocol version mismatch -- is your shell clean? ADMINPLAY 2009-05-17 26191
304 .vimrc 설정 설정, 색상 (VI 설정 색상) ADMINPLAY 2009-03-21 26177
303 리눅스에서 윈도우 공유폴더 접근하기. samba ADMINPLAY 2011-07-12 25881
302 장비를 복제해서 옮겼을 경우 네트워크가 eth0_rename 되... ADMINPLAY 2012-01-31 25796
301 linux - cp 덮어쓰기옵션 ADMINPLAY 2012-02-24 25692
300 CentOS ffmpeg yum install ADMINPLAY 2012-02-07 25577
299 리눅스 TIP ADMINPLAY 2009-03-09 25525
298 리눅스 - tar 압축 사용법 ADMINPLAY 2010-02-20 25482
297 iSCSI 설정하기 ADMINPLAY 2011-04-24 25470
296 리눅스 파일 복구 명령 debugfs ADMINPLAY 2009-06-24 25453
295 MS-DOS 배치파일 문법 ADMINPLAY 2012-01-16 25390
294 백 그라운드, 포그라운드 전환 ADMINPLAY 2009-06-04 25183
293 CentOS 5.4 Samba 서버 <-> 윈도우7에서 접근 문제 시스템관리짱 2011-03-04 25160
292 [FreeBSD]CPU, 메모리, HDD확인 및 네트워크 설정 ADMINPLAY 2012-01-17 25081
291 리눅스 시스템 관리자를 위한 즐겨찾기 ADMINPLAY 2009-05-22 24981
290 netstat 의 Send-Q, Recv-Q의 의미 ADMINPLAY 2009-02-09 24976
289 오라클11g 설치 (in centOS 5.1) ADMINPLAY 2010-04-28 24943
288 tar.gz 특정 디렉토리에 압축풀기 ADMINPLAY 2009-06-29 24928

Copyright ADMINPLAY corp. All rights reserved.

abcXYZ, 세종대왕,1234

abcXYZ, 세종대왕,1234