1
0
mirror of https://gitlab.com/MoonTestUse1/AdministrationItDepartmens.git synced 2025-08-14 00:25:46 +02:00

Merge remote changes and resolve conflicts

This commit is contained in:
MoonTestUse1
2024-12-25 03:38:58 +06:00
parent 9f01a5bae5
commit d7b08d09b0
2 changed files with 4 additions and 8 deletions

View File

@@ -10,7 +10,6 @@ services:
volumes:
- ./docker/nginx/nginx.conf:/etc/nginx/nginx.conf:ro
- ./docker/nginx/conf.d:/etc/nginx/conf.d:ro
- webroot:/var/www/html
depends_on:
- backend
@@ -31,4 +30,3 @@ services:
volumes:
sqlite_data:
webroot:

View File

@@ -3,15 +3,13 @@ server {
listen [::]:80;
server_name itformhelp.ru www.itformhelp.ru;
location /.well-known/acme-challenge/ {
allow all;
root /var/www/html;
}
root /usr/share/nginx/html;
index index.html;
location / {
root /usr/share/nginx/html;
index index.html;
try_files $uri $uri/ /index.html;
expires -1;
add_header Cache-Control "no-store, no-cache, must-revalidate";
}
location /api/ {