This repository has been archived on 2026-04-14. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
routeros_backup_next/frontend/nginx/default.conf
Mateusz Gruszczyński 4ca10f3d9b fixes
2026-04-13 08:25:14 +02:00

15 lines
204 B
Plaintext

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