Nginx: conf

This commit is contained in:
pavelbannov 2021-03-23 18:34:59 +03:00
parent 848e5dc500
commit dde8f97cfd
4 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,9 @@
server {
listen 5014;
root /var/www/products/ASC.CRM/client;
index index.html;
location / {
try_files $uri /index.html =404;
}
}

View File

@ -0,0 +1,9 @@
server {
listen 5013;
root /var/www/products/ASC.Files/editor;
index index.html;
location / {
try_files $uri /index.html =404;
}
}

View File

@ -0,0 +1,9 @@
server {
listen 5011;
root /var/www/studio/login;
index index.html;
location / {
try_files $uri /index.html =404;
}
}

View File

@ -0,0 +1,9 @@
server {
listen 5015;
root /var/www/products/ASC.Projects/client;
index index.html;
location / {
try_files $uri /index.html =404;
}
}