asterinas/test/etc/nginx.conf
2024-09-14 13:22:50 +08:00

16 lines
165 B
Nginx Configuration File

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