Go to file
alex 35817e0084 max future days 2024-01-28 22:55:30 +01:00
src max future days 2024-01-28 22:55:30 +01:00
tmp website builder 2024-01-23 22:17:29 +01:00
.gitignore added website dirs 2024-01-23 22:18:08 +01:00
README.md added readme 2024-01-23 22:23:51 +01:00
commit_and_push.sh git 2024-01-13 21:06:25 +01:00
env.example website builder 2024-01-23 22:17:29 +01:00
package-lock.json your session 2024-01-27 21:04:16 +01:00
package.json your session 2024-01-27 21:04:16 +01:00
server.ts your session 2024-01-27 21:04:16 +01:00
start.sh added readme 2024-01-23 22:23:51 +01:00
tsconfig.json init project 2024-01-10 19:21:08 +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;
}