NGINX configuration
Example of an NGINX server configuration to host pages under your existing server
Step 1: Modify sites-available config file
server {
listen 80;
server_name customerdomain.com;
# start configuration entries..
<ADD_YOUR_LOCATION_DIRECTIVES here>
# continue normal configuration..
}Step 2: Example location directives
Last updated
Was this helpful?