mirror of
https://github.com/bin456789/reinstall.git
synced 2025-01-19 04:49:13 +08:00
17 lines
233 B
Plaintext
17 lines
233 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
root /;
|
|
|
|
location = / {
|
|
try_files /logviewer.html 404;
|
|
}
|
|
|
|
location = /reinstall.log {
|
|
try_files $uri 404;
|
|
}
|
|
|
|
location / {
|
|
return 404;
|
|
}
|
|
} |