• 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!
  • 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.

Automatic installation tick "Process PHP by nginx" & "static files directly by nginx"

tanatonaut

New Pleskian
Hi to all!
CL 6.4
PP 11.5
I need that would checkmark "Process PHP by nginx" & "Serve static files directly by nginx" (Sites-and-domains - web-server-settings) were enabled by default.
Anyone know how to do it?
 
I think that there is no possibility to define it in Service Plan.
As possible workaround you can use Event Manager for "Domain created" event with command /usr/local/psa/bin/subscription with corresponding options -nginx-serve-static and -nginx-serve-php
See # /usr/local/psa/bin/subscription --help for details.
 
I think that there is no possibility to define it in Service Plan.
As possible workaround you can use Event Manager for "Domain created" event with command /usr/local/psa/bin/subscription with corresponding options -nginx-serve-static and -nginx-serve-php
See # /usr/local/psa/bin/subscription --help for details.

Maybe possible through the Plesk API enable?
 
Not sure about API, you can check it here http://download1.parallels.com/Plesk/PP11/11.5/Doc/en-US/online/plesk-api-rpc/
But for all domains you can enable it with something like:

# for i in `mysql -uadmin -p\`cat /etc/psa/.psa.shadow\` psa -Ns -e "select name from domains"`; do /usr/local/psa/bin/subscription -u $i -nginx-serve-static true -nginx-serve-static true; done

You can modify SQL select for updating specific subscriptions.
 
Back
Top