mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-20 09:55:10 -04:00
10 lines
295 B
Text
10 lines
295 B
Text
server {
|
|
listen 80 default_server;
|
|
server_name _;
|
|
|
|
root /opt/ArchiveBox/output/;
|
|
index index.html;
|
|
autoindex on;
|
|
|
|
try_files $uri $uri/ $uri.html =404;
|
|
}
|