1
0
Fork 0
mirror of synced 2024-07-07 23:35:50 +12:00
ArchiveBox/etc/nginx/conf.d/archivebox.conf

11 lines
295 B
Plaintext
Raw Normal View History

2018-10-14 15:47:30 +13:00
server {
listen 80 default_server;
server_name _;
root /opt/ArchiveBox/output/;
2018-10-14 15:47:30 +13:00
index index.html;
autoindex on;
try_files $uri $uri/ $uri.html =404;
}