docker-static/conf/default.conf

11 lines
159 B
Plaintext
Raw Normal View History

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