• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

Plesk with nginx as standalone webserver

9musashi

Basic Pleskian
Hi, I set "FPM application served by NGINX" for every service plan that I want nginx as their standalone webserver.

But I have some configuration questions:

1. How to set default "Serve static files directly by nginx" to enabled (checked) ? So I dont have to go to every domain and click "checked" to enable it. It will be nice if this option is also included in Service Plan configuration and not only in Domain configuration.

2. I need to add Drupal nginx directive in "location / " , example:
For Drupal 7
location / {
try_files $uri /index.php?$query_string; # For Drupal >= 7
}

OR
For Drupal 6
location / {
try_files $uri @rewrite; # For Drupal <= 6
}

Currently , I add "try_files $uri /index.php?$query_string; # For Drupal >= 7" line in /usr/local/psa/admin/conf/templates/custom/domain/nginxDomainVirtualHost.php
But for Drupal 6 version website I need to edit directly to /var/www/vhosts/system/domain_name/conf/nginx.conf and write-protected the file with "chattr +i" command.

Any cleaner solution to add nginx directive at Plesk GUI panel without "duplicate" nginx directive error or without have to use chattr +i command ?

I tried VestaCP and it has very good solution as they provide different nginx config template that we can choose (we can also create it) when we add a domain. Maybe Plesk could also provide "nginx config select box" to choose at domain setting.

Thank you
 
Should I just remove this line
Code:
    location / {
<?php echo $VAR->includeTemplate('domain/service/proxy.php', $OPT); ?>
    }
from /usr/local/psa/a dmin/conf/templates/custom/domain/nginxDomainVirtualHost.php

and add this line at Plesk panel nginx directive ?
Code:
location / {
try_files $uri /index.php?$query_string; # For Drupal >= 7
}
 
Back
Top