This repository has been archived on 2024-01-23. You can view files and clone it, but cannot push or open issues/pull-requests.
website-builder-api/README.md

214 B

NGINX Configuration

server_name ~^(?<subdomain>.+)\.ex\.umbach\.dev$;

location / {
		root /home/YOUR_FOLDER_PATH/customer-websites/$subdomain;
		index index.html;
		try_files $uri $uri/ =404;
}