How Nginx PHP-FPM is deployed separately

Source: Internet
Author: User
Tags nginx server
There are two servers a B, a installation nginx, B install PHP, this time nginx and PHP how to configure?

Reply content:

There are two servers a B, a installation nginx, B install PHP, this time nginx and PHP how to configure?

The configuration is basically unchanged. Adjust the firewall, only the Nginx exposed to the outside network. The usual nginx sent to FPM address from 127.0.0.1 to B server address, in PHP-FPM set listen to B LAN address, listen.allowed_clients plus a LAN address is good.

Note that the site directory structure of the Nginx server and the PHP server needs to be consistent at this time.

root  /usr/local/web/www/;    location ~ .*\.(php|php5)?$    {       #fastcgi_pass  unix:/tmp/php-cgi.sock;       fastcgi_pass  127.0.0.1:9000;  ##你懂得      fastcgi_index index.php;       include fcgi.conf;     

Modify the fastcgi configuration parameters to

Poor performance without nginx+ (NGINX+PHP-FPM) fast

Borrow the place to ask,

Do you want to deploy the Web on both Nginx and PHP two machines? Code two machines?

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.