NGinX Per Server Application Settings
About
Nginx web server is an light weight open-source web server.
Servers running Nginx will automatically inherit the Global Application setttings. In addition to the General Per Server Settings there are a handful of customisable configurations specific to Nginx
PHP-FPM Settings
php.ini settings can be configure for each application after logging into that application and navigating to Services > Developer Tools > PHP.INI
It is possible to override these php-fpm settings and add additional custom directives to a specific server.
Virtual Host Includes
You can include custom configuration within a virtual host. This is an advanced feature and should be done carefully; incorrect syntax will take down your web server.
To add custom virtual host configuration for a site, log in to your server with SSH as root and edit the file at /var/local/lxroot/nginx/ vhost_includes/example.com.conf where example.com is the domain for which you want to add the custom configuration. This file will be included at the end of the server block for this domain and will apply to http and https.
Custom Configuration (nginx.conf)
It is not possible to edit the primary nginx.conf. Any changes made to this file will be lost on update. If you would like to make changes to the NGINX configuration please do so by using the Virtualhost techique detailed above.