Go to file
alex 5b73446eca rm init password 2024-04-01 15:09:52 +02:00
src rm init password 2024-04-01 15:09:52 +02:00
tmp website builder 2024-01-23 22:17:29 +01:00
.dockerignore rm website builder 2024-02-11 14:49:27 +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 cors 2024-04-01 13:36:22 +02:00
package-lock.json change plan 2024-03-31 13:30:45 +02:00
package.json change plan 2024-03-31 13:30:45 +02:00
server.ts cors 2024-04-01 13:35:52 +02: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;
}