docker-static/conf/default.conf

11 lines
159 B
Plaintext

server {
listen 80;
server_name _;
location / {
root /srv;
index index.html;
try_files $uri $uri/ /index.html?$args;
}
}