updated readme

main
alex 2024-01-23 20:00:32 +01:00
parent 44f9801ef2
commit 32b3797ed9
1 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;
}
```