travel-steps/summer2024-frontend/nginx-custom.conf
Nicolas Froger 8873fdb2c8
frontend: add dockerfile
Signed-off-by: Nicolas Froger <nicolas@kektus.xyz>
2024-07-25 19:37:43 +02:00

10 lines
208 B
Text

server {
listen 8080;
server_name localhost;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html =404;
}
}