You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
329 B
14 lines
329 B
1 month ago
|
server {
|
||
|
listen 56318;
|
||
|
listen [::]:56318;
|
||
|
location ^~ /api/ {
|
||
|
proxy_pass http://172.17.0.1:3868;
|
||
|
}
|
||
|
|
||
|
location / {
|
||
|
ssi on;
|
||
|
ssi_silent_errors on;
|
||
|
ssi_types text/shtml;
|
||
|
root /data/wwwroot/oss/web/;
|
||
|
}
|
||
|
}
|