Files
bcdigital-challenge/nginx.conf
2025-11-02 20:08:31 -05:00

8 lines
148 B
Nginx Configuration File

server {
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
}