Files
ds-pages/default.conf
2023-06-04 14:32:40 +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;
}
}