This repository has been archived on 2024-01-23. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
Go to file
alex cc2bf4cf1e create website 2024-01-23 22:14:29 +01:00
src create website 2024-01-23 22:14:29 +01:00
.gitignore added gitignore 2024-01-23 19:34:14 +01:00
README.md updated readme 2024-01-23 20:00:32 +01:00
commit_and_push.sh a 2024-01-23 19:32:43 +01:00
env.example a 2024-01-23 19:31:52 +01:00
package-lock.json a 2024-01-23 19:32:43 +01:00
package.json create website 2024-01-23 22:14:29 +01:00
server.ts a 2024-01-23 19:32:43 +01:00
tsconfig.json init project 2024-01-22 23:34:17 +01:00

README.md

NGINX Configuration

server_name ~^(?<subdomain>.+)\.ex\.umbach\.dev$;

location / {
		root /home/YOUR_FOLDER_PATH/customer-websites/$subdomain;
		index index.html;
		try_files $uri $uri/ =404;
}