added readme

main
alex 2024-01-23 22:23:51 +01:00
parent 8efd882655
commit 4f8ecc6bc8
2 changed files with 11 additions and 0 deletions

11
README.md Normal file
View File

@ -0,0 +1,11 @@
#### 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;
}
```

0
start.sh Normal file → Executable file
View File