Files
mwitnessing/_deploy/maintenance/default.conf
2024-05-08 16:08:14 +03:00

12 lines
166 B
Plaintext

server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
}