Web Server Service (Nginx)¶
The Nginx web server functions as a gateway from the open internet to your DXP Cloud services. It handles all traffic from your users and acts as a high-performance web server.
See the Web server service limitations section for more information.
Configurations¶
Although DXP Cloud’s services are fine-tuned to work well by default, you may
need to configure Nginx further. To do this, you can include any CONF file
inside the configs/{ENV}/conf.d/
folder. When you deploy your changes, the file is
automatically injected into your service and overwrites the default
configuration. Here’s an example folder structure of such a file inside the
appropriate directory:
webserver
├── configs
│ └── common
│ └── conf.d
│ └── nginx.conf
└── LCP.json
Files in /webserver/configs/{ENV}/
will be copied as overrides into /etc/nginx/ in the webserver container in DXP Cloud. Files in /webserver/configs/{ENV}/public/
will be copied as overrides into var/www/html/.
Note
If you are using version 3.x.x services, then Nginx configurations instead belong in the appropriate lcp/webserver/config/{ENV}/
directory. See Understanding Service Stack Versions for more information on checking the version.
Environment Variables¶
These environment variables are available for the web server service:
Name |
Default value |
Description |
---|---|---|
|
|
Configures the |
|
|
Configures the |
|
|
Configures the |
|
|
Configures the |
|
|
Overrides the maximum number of instances for any service. If you plan to use auto-scaling, then set this to the highest value needed. |
|
Customizes the format for Nginx logging. See the official Nginx documentation. |
The Ingress Load Balancer is also configured via the web server service. Environment variables can be added to this service to configure the load balancer and custom domains. See the Load Balancer environment variables reference for more information.
All environment variables and other forms of configuration for Nginx are in the official Nginx documentation. You can set such configurations in the configs/{ENV}/
directory, and environment variables in the service’s LCP.json
file.
Scripts¶
You can use scripts for more extensive customizations. However, use caution when doing so. This is the most powerful way to customize the web server service and can cause undesired side effects.
Any .sh
files found in the configs/{ENV}/scripts/
folder are run prior to starting your
service. For example, to include a script that removes all log files, you could
place it in this directory structure:
webserver
├── configs
│ └── common
│ └── scripts
│ └── remove-log-files.sh
└── LCP.json
Note
If you are using version 3.x.x services, then webserver scripts instead belong in the appropriate lcp/webserver/script/{ENV}/
directory. See Understanding Service Stack Versions for more information on checking the version.