From 32b3797ed9b03bae4200f00cdcf7c289aad0b2c7 Mon Sep 17 00:00:00 2001 From: alex Date: Tue, 23 Jan 2024 20:00:32 +0100 Subject: [PATCH] updated readme --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..69f745f --- /dev/null +++ b/README.md @@ -0,0 +1,11 @@ +#### NGINX Configuration + +```nginx +server_name ~^(?.+)\.ex\.umbach\.dev$; + +location / { + root /home/YOUR_FOLDER_PATH/customer-websites/$subdomain; + index index.html; + try_files $uri $uri/ =404; +} +```