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

12 lines
214 B
Markdown

#### NGINX Configuration
```nginx
server_name ~^(?<subdomain>.+)\.ex\.umbach\.dev$;
location / {
root /home/YOUR_FOLDER_PATH/customer-websites/$subdomain;
index index.html;
try_files $uri $uri/ =404;
}
```