Files
QMS/fe/web/admin-app/nginx.conf
T
ISMAIL MASSERAN c55736ee86
Build Docker Image / build-backend (push) Successful in 16s
Build Docker Image / build-admin (push) Failing after 29s
Build Docker Image / build-teller (push) Successful in 30s
DONE: cicd pipeline for frontend that uses ip first
2026-07-23 12:25:11 +08:00

11 lines
165 B
Nginx Configuration File

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}