Customize NGINX configuration templates for your sites in Loupp
$DOMAIN_NAME
server_name $DOMAIN_NAME;
Value: Automatically replaced with the actual domain nameExample: example.com
becomes server_name example.com;
$PUBLIC_DIRECTORY
root $PUBLIC_DIRECTORY;
Value: Automatically set to /current/public
Important: This value should not be changed as it’s required for zero downtime deployments and rollback processes$PUBLIC_DIRECTORY
variable is set to /current/public
and should not be modified. This path is essential for Loupp’s zero downtime deployment and rollback processes to function correctly.