SlideShare a Scribd company logo
Turbocharge Your PHP
                                      with Nginx




                                       Errazudin Ishak




www.mimos.my   © 2009 MIMOS Berhad. All Rights Reserved.
Agenda

        • me
        • “engine X”
        • nginx.conf
        • ..with PHP
        • Benchmark
        • Samples


www.mimos.my      © 2010 MIMOS Berhad. All Rights Reserved.
"Apache is like Microsoft Word, it has a million options
      but you only need six. Nginx does those six things, and it
      does five of them 50 times faster than Apache."
      - Chris Lea, ChrisLea.com




http://www.abacuspub.com/fsd/catalog/s574.htm



             www.mimos.my                       © 2010 MIMOS Berhad. All Rights Reserved.
Me
        • Senior engineer @ Mimos Malaysia
        • Focuses on web application development,
          deployment, performance and stability.
        • 2009 : foss.my , MyGOSSCON
        • 2010 : Entp. PHP Techtalk, BarcampKL, PHP
                 Meetup, MOSC2010




www.mimos.my          © 2010 MIMOS Berhad. All Rights Reserved.
www.mimos.my   © 2010 MIMOS Berhad. All Rights Reserved.
nginx

        • Free
        • X platform
        • open-source
        • (high-performance)
        • lightweight
        • HTTP server
        • reverse proxy
        • IMAP/POP3 proxy server
www.mimos.my      © 2010 MIMOS Berhad. All Rights Reserved.
http://noisetu.be/mirrors/jet_beetle/



        “I'm the author of nginx (pronounced "engine x")-
        Igor Sysoev
        (nginx creator)




www.mimos.my              © 2010 MIMOS Berhad. All Rights Reserved.
http://image.importtuner.com/f/miscellaneous/new-tomei-turbo-kits-for-sr/29774779/tomei-bolt-on-turbo-kit-for-sr.jpg




               Load Balance
               Static Content, Index files
               Reverse Proxy (with cache)
               Streaming




www.mimos.my             © 2010 MIMOS Berhad. All Rights Reserved.
http://www.litchfieldimports.co.uk/forum/gtr-engine-bay.jpg




               Loads of Request
               Less memory footprint
               Use less CPU
               C10K Certified



www.mimos.my       © 2010 MIMOS Berhad. All Rights Reserved.
http://www.gtrblog.com/wp-content/uploads/2008/11/gtr-gt2-nurburgring-001.jpg




                                                  Apache
--------                                          ----------
Async model                                       Processes
Single Thread                                     Threads
Low Memory                                        High Memory
Less CPU                                          CPU Overhead
PHP as separate proc.                             PHP included as
over FastCGI                                      module (mod_php)




  www.mimos.my      © 2010 MIMOS Berhad. All Rights Reserved.
Numbers

                                                           http://www.scoobyworld.co.uk/catalog/images/BFamber-1.jpg
www.mimos.my   © 2010 MIMOS Berhad. All Rights Reserved.
Market Share for Top Servers Across All Domains
                                                                    213,458,815




Source :
Netcraft
  www.mimos.my          © 2010 MIMOS Berhad. All Rights Reserved.
Market Share for Top Servers Across the Million Busiest
          Sites




Source :
Netcraft
  www.mimos.my             © 2010 MIMOS Berhad. All Rights Reserved.
Market Share for Top Servers Across All Domains

                                                                    227,225,642




Source :
Netcraft
  www.mimos.my          © 2010 MIMOS Berhad. All Rights Reserved.
Market Share for Top Servers Across the Million Busiest
          Sites




Source :
Netcraft
  www.mimos.my             © 2010 MIMOS Berhad. All Rights Reserved.
http://www.autoguide.com/auto-news/wp-content/uploads/2010/09/The_Stig_Top_Gear_Eight.jpg




                                                                     Who?




www.mimos.my   © 2010 MIMOS Berhad. All Rights Reserved.
Me uses nginx




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
Me uses nginx




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
We also..




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
We all love nginx…




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
Modules

                          Mail, 3rd
                           Party
                           Optional
                               HTTP

                           Standard
                             HTTP



                            Core

www.mimos.my      © 2010 MIMOS Berhad. All Rights Reserved.
Modules


               Mail Core, Mail Auth, Mail Proxy, Mail SSL


 HTTP Addition, Emb. Perl, FLV, Gzip Precompression, Random Index,
GeoIP, Real IP, SSL, Stub Status, Substitution, WebDAV, Google Perftools,
                       XSLT, Secure Link, Image Filter

 HTTP Core, HTTP Upstream, HTTP Access, HTTP Auth Basic, HTTP Auto
 Index, Browser, Charset, Empty gif, FastCGI, Geo, Gzip, HTTP Headers,
 Index, HTTP Referer, HTTP Limit Zone, HTTP Limit Requests, Log, Map,
           Memchached, HTTP Proxy, Rewrite, SSI, User ID



                          Main, Events
www.mimos.my              © 2010 MIMOS Berhad. All Rights Reserved.
Nginx with PHP

        • FastCGI
        • PHP-FPM (FastCGI Process Manager)
               • Bundled with PHP 5.3.3




www.mimos.my              © 2010 MIMOS Berhad. All Rights Reserved.
Nginx with PHP : FastCGI

        • persistent processes, ability to handle multiple
          requests.
        • web server and gateway application
          communicate with sockets such as TCP
        • web server forwards the client request to the
          gateway and receives the response within a
          single connection
        • can be implemented on any platform with any
          programming language.



www.mimos.my           © 2010 MIMOS Berhad. All Rights Reserved.
Nginx with PHP : FastCGI

     server {
       server_name mysite.com;
       listen 80;
       root /usr/share/mysite/www;
       index index.html;
       location / {
           fastcgi_pass 127.0.0.1:9000;
           fastcgi_param SCRIPT_FILENAME
       $document_root$fastcgi_script_name;
           fastcgi_param PATH_INFO $fastcgi_script_name;
           include fastcgi_params;
       }
     }


www.mimos.my         © 2010 MIMOS Berhad. All Rights Reserved.
PHP-FPM

        • FastCGI Process Manager
        • Daemonizes PHP > background proc
        • provides a command-line script for
          managing PHP proc
        • configuration of FastCGI pools
        • enhances some of the FastCGI internals
        • increases error reporting
        • script termination

www.mimos.my         © 2010 MIMOS Berhad. All Rights Reserved.
Benchmark
http://www.myshutterspace.com/profile/AthonySaucedo



        www.mimos.my                                  © 2010 MIMOS Berhad. All Rights Reserved.
Benchmark : Specs

        •      AMD Turion 64
        •      1MB L2 Cache, 1.8 GHz
        •      1GB RAM
        •      OS- Karmic Koala
        •      (my old 4 y.o. Acer)




www.mimos.my             © 2010 MIMOS Berhad. All Rights Reserved.
Benchmark : apacheBench

        • -n 5000
        • -c 500




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
Benchmark : nginx




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
Benchmark : apache (runs..)




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
Benchmark : apache (end)




www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
Benchmark : Findings


                Apache 2.2.12               Nginx 0.7.62
Concurrency     500                         500
Doc size        2195 bytes                  2195 bytes
Complete        100%                        100%
Request
Req per secs    327                         3003
Longest Req     15269ms                     296ms




 www.mimos.my         © 2010 MIMOS Berhad. All Rights Reserved.
“Every nanoseconds count!” - My Big Boss
               (your boss also)
                                                                              http://geekonfilm.files.wordpress.com/2009/09/vader.jpg
www.mimos.my                      © 2010 MIMOS Berhad. All Rights Reserved.
Resources


•    http://wiki.nginx.org/Main
•    Nedelcu’s book http://goo.gl/67OA
•    http://php-fpm.org/
•    http://nginx.org
•    #nginx




    www.mimos.my        © 2010 MIMOS Berhad. All Rights Reserved.
http://goo.gl/EbTI




                                        Demo


www.mimos.my   © 2010 MIMOS Berhad. All Rights Reserved.
THANK YOU

                                                                                                    @errazudin
                                                                                                http://joind.in/2067


* All images, logos and data are the copyright of
their respective owners
     www.mimos.my                                   © 2009 MIMOS Berhad. All Rights Reserved.

More Related Content

PDF
Making Joomla! site fly with nginx : Joomla! day Malaysia 2011
PDF
FastCGI Process Manager
PDF
appserver.io - Präsentation auf den code.talks 2014
PDF
Serverprovisioning in einer dynamischen Infrastruktur
PDF
Accelarating PHP Applications at INTAN Sabah Technology Updates 2011
PDF
DA with Wa - Desktop Apps With Web Apps
PPTX
Joomla! Performance on Steroids
PPTX
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)
Making Joomla! site fly with nginx : Joomla! day Malaysia 2011
FastCGI Process Manager
appserver.io - Präsentation auf den code.talks 2014
Serverprovisioning in einer dynamischen Infrastruktur
Accelarating PHP Applications at INTAN Sabah Technology Updates 2011
DA with Wa - Desktop Apps With Web Apps
Joomla! Performance on Steroids
HTML5 Real Time and WebSocket Code Lab (SFHTML5, GTUGSF)

Similar to turbocharge your php with nginx - errazudin - phpnw2010 (20)

PDF
Rise of the Planet of the Anonymous
PDF
Cooking security sans@night
PDF
Jeff Rigby on Scaling Drupal in the Enterprise
PDF
Sulu and the Other Guys - Symfony Live Berlin 2015
PDF
Scalable applications with HTTP
PDF
HTML5 Offline Web Applications (Silicon Valley User Group)
PDF
Media mosa architecture - features -10 june 2010
PPTX
Analysis & Design Method for OSGi-based Development
PPTX
Sitecore 9 - What's new?
PDF
PHP at Yahoo!
PPTX
Automating Oracle Database deployment with Amazon Web Services, fabric, and boto
PDF
Zitec+ +new business+-+3iun2010
PPT
Camelone-2012 HTML5 WebSocket ActiveMQ/Camel
PDF
Mule Integration Simplified
PDF
Mobile Web High Performance
PDF
WebSocket Perspectives and Vision for the Future
PPTX
HTML5 Real-Time and Connectivity
PPTX
V2 peter-lubbers-sf-jug-websocket
PPTX
Scaling wix.com to 100 million users
PPTX
Peter lubbers-html5-offline-web-apps
Rise of the Planet of the Anonymous
Cooking security sans@night
Jeff Rigby on Scaling Drupal in the Enterprise
Sulu and the Other Guys - Symfony Live Berlin 2015
Scalable applications with HTTP
HTML5 Offline Web Applications (Silicon Valley User Group)
Media mosa architecture - features -10 june 2010
Analysis & Design Method for OSGi-based Development
Sitecore 9 - What's new?
PHP at Yahoo!
Automating Oracle Database deployment with Amazon Web Services, fabric, and boto
Zitec+ +new business+-+3iun2010
Camelone-2012 HTML5 WebSocket ActiveMQ/Camel
Mule Integration Simplified
Mobile Web High Performance
WebSocket Perspectives and Vision for the Future
HTML5 Real-Time and Connectivity
V2 peter-lubbers-sf-jug-websocket
Scaling wix.com to 100 million users
Peter lubbers-html5-offline-web-apps
Ad

Recently uploaded (20)

PDF
Machine learning based COVID-19 study performance prediction
PDF
MIND Revenue Release Quarter 2 2025 Press Release
PPTX
Spectroscopy.pptx food analysis technology
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
The Rise and Fall of 3GPP – Time for a Sabbatical?
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Agricultural_Statistics_at_a_Glance_2022_0.pdf
PDF
Review of recent advances in non-invasive hemoglobin estimation
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PDF
A comparative analysis of optical character recognition models for extracting...
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
Machine learning based COVID-19 study performance prediction
MIND Revenue Release Quarter 2 2025 Press Release
Spectroscopy.pptx food analysis technology
Digital-Transformation-Roadmap-for-Companies.pptx
Dropbox Q2 2025 Financial Results & Investor Presentation
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Spectral efficient network and resource selection model in 5G networks
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Chapter 3 Spatial Domain Image Processing.pdf
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
The Rise and Fall of 3GPP – Time for a Sabbatical?
Per capita expenditure prediction using model stacking based on satellite ima...
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
Encapsulation_ Review paper, used for researhc scholars
Agricultural_Statistics_at_a_Glance_2022_0.pdf
Review of recent advances in non-invasive hemoglobin estimation
“AI and Expert System Decision Support & Business Intelligence Systems”
A comparative analysis of optical character recognition models for extracting...
Reach Out and Touch Someone: Haptics and Empathic Computing
Ad

turbocharge your php with nginx - errazudin - phpnw2010

  • 1. Turbocharge Your PHP with Nginx Errazudin Ishak www.mimos.my © 2009 MIMOS Berhad. All Rights Reserved.
  • 2. Agenda • me • “engine X” • nginx.conf • ..with PHP • Benchmark • Samples www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 3. "Apache is like Microsoft Word, it has a million options but you only need six. Nginx does those six things, and it does five of them 50 times faster than Apache." - Chris Lea, ChrisLea.com http://www.abacuspub.com/fsd/catalog/s574.htm www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 4. Me • Senior engineer @ Mimos Malaysia • Focuses on web application development, deployment, performance and stability. • 2009 : foss.my , MyGOSSCON • 2010 : Entp. PHP Techtalk, BarcampKL, PHP Meetup, MOSC2010 www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 5. www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 6. nginx • Free • X platform • open-source • (high-performance) • lightweight • HTTP server • reverse proxy • IMAP/POP3 proxy server www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 7. http://noisetu.be/mirrors/jet_beetle/ “I'm the author of nginx (pronounced "engine x")- Igor Sysoev (nginx creator) www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 8. http://image.importtuner.com/f/miscellaneous/new-tomei-turbo-kits-for-sr/29774779/tomei-bolt-on-turbo-kit-for-sr.jpg Load Balance Static Content, Index files Reverse Proxy (with cache) Streaming www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 9. http://www.litchfieldimports.co.uk/forum/gtr-engine-bay.jpg Loads of Request Less memory footprint Use less CPU C10K Certified www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 10. http://www.gtrblog.com/wp-content/uploads/2008/11/gtr-gt2-nurburgring-001.jpg Apache -------- ---------- Async model Processes Single Thread Threads Low Memory High Memory Less CPU CPU Overhead PHP as separate proc. PHP included as over FastCGI module (mod_php) www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 11. Numbers http://www.scoobyworld.co.uk/catalog/images/BFamber-1.jpg www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 12. Market Share for Top Servers Across All Domains 213,458,815 Source : Netcraft www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 13. Market Share for Top Servers Across the Million Busiest Sites Source : Netcraft www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 14. Market Share for Top Servers Across All Domains 227,225,642 Source : Netcraft www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 15. Market Share for Top Servers Across the Million Busiest Sites Source : Netcraft www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 17. Me uses nginx www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 18. Me uses nginx www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 19. We also.. www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 20. We all love nginx… www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 21. Modules Mail, 3rd Party Optional HTTP Standard HTTP Core www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 22. Modules Mail Core, Mail Auth, Mail Proxy, Mail SSL HTTP Addition, Emb. Perl, FLV, Gzip Precompression, Random Index, GeoIP, Real IP, SSL, Stub Status, Substitution, WebDAV, Google Perftools, XSLT, Secure Link, Image Filter HTTP Core, HTTP Upstream, HTTP Access, HTTP Auth Basic, HTTP Auto Index, Browser, Charset, Empty gif, FastCGI, Geo, Gzip, HTTP Headers, Index, HTTP Referer, HTTP Limit Zone, HTTP Limit Requests, Log, Map, Memchached, HTTP Proxy, Rewrite, SSI, User ID Main, Events www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 23. Nginx with PHP • FastCGI • PHP-FPM (FastCGI Process Manager) • Bundled with PHP 5.3.3 www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 24. Nginx with PHP : FastCGI • persistent processes, ability to handle multiple requests. • web server and gateway application communicate with sockets such as TCP • web server forwards the client request to the gateway and receives the response within a single connection • can be implemented on any platform with any programming language. www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 25. Nginx with PHP : FastCGI server { server_name mysite.com; listen 80; root /usr/share/mysite/www; index index.html; location / { fastcgi_pass 127.0.0.1:9000; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_script_name; include fastcgi_params; } } www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 26. PHP-FPM • FastCGI Process Manager • Daemonizes PHP > background proc • provides a command-line script for managing PHP proc • configuration of FastCGI pools • enhances some of the FastCGI internals • increases error reporting • script termination www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 27. Benchmark http://www.myshutterspace.com/profile/AthonySaucedo www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 28. Benchmark : Specs • AMD Turion 64 • 1MB L2 Cache, 1.8 GHz • 1GB RAM • OS- Karmic Koala • (my old 4 y.o. Acer) www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 29. Benchmark : apacheBench • -n 5000 • -c 500 www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 30. Benchmark : nginx www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 31. Benchmark : apache (runs..) www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 32. Benchmark : apache (end) www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 33. Benchmark : Findings Apache 2.2.12 Nginx 0.7.62 Concurrency 500 500 Doc size 2195 bytes 2195 bytes Complete 100% 100% Request Req per secs 327 3003 Longest Req 15269ms 296ms www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 34. “Every nanoseconds count!” - My Big Boss (your boss also) http://geekonfilm.files.wordpress.com/2009/09/vader.jpg www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 35. Resources • http://wiki.nginx.org/Main • Nedelcu’s book http://goo.gl/67OA • http://php-fpm.org/ • http://nginx.org • #nginx www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 36. http://goo.gl/EbTI Demo www.mimos.my © 2010 MIMOS Berhad. All Rights Reserved.
  • 37. THANK YOU @errazudin http://joind.in/2067 * All images, logos and data are the copyright of their respective owners www.mimos.my © 2009 MIMOS Berhad. All Rights Reserved.