sadece nginx kullanmak için
https://docs.plesk.com/en-US/obsidia...ettings.72320/
Go to Websites & Domains > Apache & nginx Settings.
In the nginx settings section, clear the Proxy mode checkbox.
Click Apply.
böylece apache kapanacak nginx daha hızlı
https://support.plesk.com/hc/en-us/a...ept-start-page
wordpress perma linkler için
Log in to Plesk.
Go to Domains > example.com > Hosting & DNS > Apache & nginx Settings.
Add the content below to the Additional nginx directives field:
if (!-e $request_filename) {
set $test P;
}
if ($uri !~ ^/(plesk-stat|webstat|webstat-ssl|ftpstat|anon_ftpstat|awstats-icon|internal-nginx-static-location|status_phpfpm)) {
set $test "${test}C";
}
if ($test = PC) {
rewrite ^/(.*)$ /index.php?$1;
}