• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved fpm buffer settings and proxy buffer

Servus

Basic Pleskian
Hello!
Sorry I edited this thread full. I'm new at nginx and I read that some plesk user paste this in additional nginx directives in domain apache+nginx settings.
I do not know muc about FPM settings at all. All the time with apache and nginx together I had no problems with it but very often slow browsing, special with images. (by only 100 visitors).
Could you please help finding the correct fpm settings serverwide for all domains if it's possible. My server is Ubuntu 16.04 with 16g ram. I use now only nginx with php 7.1.8. and disabled apache for each domain and also in service plan settings. I know it is less but I want to make it possible for 1000-2000 visitors at maximum prime time. Only make it possible.
Code:
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
location ~ .php$ {
 fastcgi_buffer_size 128k;
 fastcgi_buffers 4 256k;
 fastcgi_busy_buffers_size 256k;
}
Thanks in advice
 
Last edited:
Hi Servus,

if you desire to tweak your nginx with the additional settings serverwide, pls. leave out the
Code:
location ~ .php$ {
}
( ... as "location - definitions" are not allowed inside the "nginx.conf" ! ) - part and insert into your "/etc/nginx/nginx.conf":
Code:
        proxy_buffer_size   128k;
        proxy_buffers   4 256k;
        proxy_busy_buffers_size   256k;
... into the "http" - section.​

If you furthermore desire to insert additional "PHP-FPM" - settings, pls. do this over the "Additional nginx directives" at your domain specific "Apache and nginx Settings":
Code:
location ~ .php$ {

    fastcgi_buffer_size 128k;
    fastcgi_buffers 4 256k;
    fastcgi_busy_buffers_size 256k;
    fastcgi_temp_file_write_size 256k;
    
}
 
Feel good to know this. That is very important for me. Thank you very much. Thumby up :)
Hope the values are correct. I looked in very much support articles of plesk and take this ones which look all right for my server.
You added fast_cgi_file_write_size
therefor I hope you saw these all values and accept them as correct in normal installations.
Thanks your ver ymuch for it;)
 
Back
Top