Files
ds-pages/docker/default.conf
2023-04-19 13:33:07 +00:00

14 lines
202 B
Plaintext

server {
listen 80;
autoindex off;
server_name _;
server_tokens off;
location / {
root /static;
index index.html;
try_files $uri $uri/ /index.html;
}
}