Jake Howard
92052a3d0a
This creates a simple base configuration skeleton, that other configuration can be easily loaded into.
11 lines
138 B
Nginx Configuration File
11 lines
138 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
|
|
gzip off;
|
|
gzip_static off;
|
|
|
|
root /mnt/downloads;
|
|
|
|
autoindex on;
|
|
autoindex_exact_size off;
|
|
}
|