Files
TallerCiCd/frontend/nginx.conf
jose-rZM abf402b775
Some checks failed
CD/pipeline/head Something is wrong with the build of this commit
Update listening port
2025-12-23 17:46:32 +01:00

12 lines
146 B
Nginx Configuration File

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