blob: dd6cedc7c57270f0cd8f9b07dc73814d7e78645d [file] [log] [blame]
Seamher147b16c2025-06-03 16:53:49 +08001worker_processes 1;
2events { worker_connections 1024; }
3
4http {
5 include mime.types;
6 default_type application/octet-stream;
7
8 sendfile on;
9 keepalive_timeout 65;
10
11 server {
12 listen 8082;
13
14 # 1. 代理静态资源:如 http://localhost/static/index.html
15 location /upload/ {
16 alias /app/upload/;
17 autoindex on;
18 }
19 }
20}