racemash/nginx/default.conf

15 lines
233 B
Plaintext

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