自定义类加载器
# 自定义类加载器
1
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 80;
server_name localhost;
location / {
root D:\github\shortlink\console-vue\dist;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
location /api {
proxy_read_timeout 10s;
proxy_pass http://112.74.36.216:8000/api;
}
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
1
1
1
1
上次更新: 2024/08/09, 16:07:34