added readme
parent
8efd882655
commit
4f8ecc6bc8
|
@ -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;
|
||||
}
|
||||
```
|
Loading…
Reference in New Issue