Go to file
alex c69f94d030 export account 2024-02-03 23:48:07 +01:00
src export account 2024-02-03 23:47:41 +01:00
tmp website builder 2024-01-23 22:17:29 +01:00
user-profile-exports export account 2024-02-03 23:47:41 +01:00
.gitignore export account 2024-02-03 23:48:07 +01:00
Dockerfile personal min and max future booking days 2024-02-03 09:24:52 +01:00
README.md added readme 2024-01-23 22:23:51 +01:00
build-docker.sh personal min and max future booking days 2024-02-03 09:24:52 +01:00
commit_and_push.sh git 2024-01-13 21:06:25 +01:00
env.example export account 2024-02-03 22:36:30 +01:00
package-lock.json export account 2024-02-03 22:36:30 +01:00
package.json export account 2024-02-03 22:36:30 +01:00
server.ts export account 2024-02-03 22:36:30 +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;
}