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/96c/trackback
List of Articles
번호 제목 글쓴이 날짜 조회 수sort
307 <video>의 속성과 메소드 ADMINPLAY 2012-10-29 8226
306 SCM - 캐시 서버 구축 (Squid in Linux) ADMINPLAY 2014-04-27 8235
305 Zabbix 웹서비스 모니터링 ADMINPLAY 2014-07-07 8263
304 HTML5 멀티미디어 태그 - <video>,<audio>,<embed> ADMINPLAY 2012-05-02 8317
303 allowScriptAccess 설정 l2zeo 2012-05-05 8425
302 CentOS 자동로그인 설정 ADMINPLAY 2014-04-14 8831
301 클라이언트가 ssh접속시 서버의 RSA키값 변경으로 인한 접... ADMINPLAY 2016-05-20 8865
300 Bigbluebutton Installation Ubuntu ADMINPLAY 2013-04-11 8960
299 Adaptec 컨트롤러 StorMan 에러 및 각종 확인 방법 ADMINPLAY 2013-06-12 8986
298 [CentOS] sshfs - 리눅스 윈도우간 데이터 전송을 편리하게 file ADMINPLAY 2014-09-21 9422
297 How to Enable EPEL Repository for RHEL/CentOS 6/5 ADMINPLAY 2014-06-13 9532
296 파일비교 명령어 diff 사용법 ADMINPLAY 2013-05-03 9646
295 Sample rate(샘플레이트)와 Bit rate (비트레이트) ADMINPLAY 2012-12-28 9716
294 스트리밍 서비스 위한 각 회사 와우자,어도비,마이크로 ... ADMINPLAY 2013-05-06 9888
293 FreeBSD 참고 명령문 ( H/W 정보 확인 방법) ADMINPLAY 2012-10-22 10191
292 TaskSet 으로 Process의 사용 CPU를 지정해 보자! ADMINPLAY 2012-06-18 10221
291 rsync 를 이용하여 동기화 할때 특정 폴더 2개 이상 제외하기 ADMINPLAY 2012-05-09 10736
290 GSLB(Global Service Load Balancing) ADMINPLAY 2012-07-30 10892
289 OS X 10.9 매버릭스의 기본 파일공유 프로토콜은 AFP가 아... ADMINPLAY 2014-03-04 11025
288 Linux 마우스 휠 방향 바꾸기 (mac 처럼 마우스 휠 바꾸기) ADMINPLAY 2014-02-27 11846

Copyright ADMINPLAY corp. All rights reserved.

abcXYZ, 세종대왕,1234

abcXYZ, 세종대왕,1234