mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-19 04:49:37 +02:00
13 lines
204 B
Nginx Configuration File
13 lines
204 B
Nginx Configuration File
events {}
|
|
|
|
http {
|
|
server {
|
|
listen 80;
|
|
server_name _;
|
|
|
|
location /data/ {
|
|
root /var/www/html;
|
|
autoindex on; # Enable directory listing
|
|
}
|
|
}
|
|
}
|