12 lines
139 B
Nginx Configuration File
12 lines
139 B
Nginx Configuration File
|
|
events {}
|
|
http {
|
|
server {
|
|
listen 80;
|
|
|
|
location / {
|
|
root /data;
|
|
autoindex on;
|
|
}
|
|
}
|
|
} |