1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-07-18 20:39:36 +02:00
AdventureLog/cdn/nginx.conf

14 lines
204 B
Nginx Configuration File
Raw Permalink Normal View History

events {}
http {
server {
listen 80;
server_name _;
location /data/ {
root /var/www/html;
autoindex on; # Enable directory listing
}
}
}