react/default.conf
jank 9fe7723d13
All checks were successful
Build and Push Docker Image / Build (push) Successful in 21s
fix: Fix routing
2025-09-15 08:17:04 +02:00

11 lines
158 B
Text

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