2024-10-01 14:18:02 +08:00

19 lines
221 B
Nginx Configuration File

user root;
daemon off;
worker_processes 1;
events {
}
http {
include mime.types;
server {
listen 10.0.2.15:8080;
access_log off;
location / {
autoindex on;
}
}
}