1
0
mirror of https://github.com/pirate/ArchiveBox.git synced 2025-08-06 14:46:52 +02:00

limit nginx config to only serve archive directory instead of main data folder root

This commit is contained in:
Nick Sweeting
2023-06-13 16:43:37 -07:00
committed by GitHub
parent 0e0b06bef1
commit 58d784cdd8

View File

@@ -34,12 +34,14 @@ http {
server {
listen 80 default_server;
server_name _;
root /var/www;
index index.html;
autoindex on;
try_files $uri $uri/ $uri.html =404;
location /archive {
root /var/www/archive;
}
}
}