nginx-conf/conf/nginx.conf
2025-02-16 21:06:56 -07:00

21 lines
468 B
Nginx Configuration File

worker_processes 1;
events {
worker_connections 1024;
}
http {
sendfile on;
keepalive_timeout 65;
include "includes/mime.types";
default_type application/octet-stream;
server {
listen 8080;
server_name _;
error_page 500 502 503 504 /50x.html;
include "includes/html-error.conf";
location / {
root "D:/7-Question";
autoindex on;
autoindex_format json;
}
}
}