Add new comment

I'm sorry, I made a typo in my article step 3. The comment character for php-fpm configuration should be comma "," and not hash sign "#". Please change the following lines in your /etc/php-fpm.d/www1.conf file from:
  
pm.max_children = 8 # Total number of processes allowed
pm.start_servers = 3 # Number of processes waiting for requests when nginx starts
pm.min_spare_servers = 3 # Number of spare processes nginx will create
pm.max_spare_servers = 8 # Number of spare processes that will be attempted to create
  
... to:
  
pm.max_children = 8 ; Total number of processes allowed
pm.start_servers = 3 ; Number of processes waiting for requests when nginx starts
pm.min_spare_servers = 3 ; Number of spare processes nginx will create
pm.max_spare_servers = 8 ; Number of spare processes that will be attempted to create
  

Restricted HTML

  • Allowed HTML tags: <a href hreflang> <em> <strong> <cite> <blockquote cite> <code> <ul type> <ol start type> <li> <dl> <dt> <dd> <h2 id> <h3 id> <h4 id> <h5 id> <h6 id>
  • Lines and paragraphs break automatically.