Update: 2026-07-24 22:57:32

This commit is contained in:
Hamza-Ayed
2026-07-24 22:57:32 +03:00
parent 0b24bc21b6
commit 917dfc025f
4 changed files with 52 additions and 3 deletions
+1
View File
@@ -20,6 +20,7 @@ services:
- ../backend:/var/www/backend:ro
- ../payment_server/v2:/var/www/v2:ro
- ../loction_server:/var/www/loction_server:ro
- ../dashboard:/var/www/dashboard:ro
depends_on:
- php
mem_limit: 256m
+12
View File
@@ -34,6 +34,18 @@ server {
fastcgi_param SCRIPT_FILENAME /status;
}
location /dashboard/admin {
alias /var/www/dashboard/siro-admin;
index index.html;
try_files $uri $uri/ /dashboard/admin/index.html;
}
location /dashboard/service {
alias /var/www/dashboard/siro-service;
index index.html;
try_files $uri $uri/ /dashboard/service/index.html;
}
location / {
try_files $uri $uri/ =404;
}