docker-static/conf/default.conf

11 lines
159 B
Plaintext
Raw Permalink Normal View History

2019-08-10 20:46:44 +00:00
server {
listen 80;
server_name _;
location / {
root /srv;
index index.html;
try_files $uri $uri/ /index.html?$args;
}
2022-02-07 11:26:42 +00:00
}