Seamher | 147b16c | 2025-06-03 16:53:49 +0800 | [diff] [blame^] | 1 | worker_processes 1; |
2 | events { worker_connections 1024; } | ||||
3 | |||||
4 | http { | ||||
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 | } |