Files
TallerCiCd/frontend/nginx.conf
jose-rZM c3f7af7379 Init
2025-12-15 11:42:17 +01:00

12 lines
144 B
Nginx Configuration File

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