first commit

This commit is contained in:
iProbe 2022-10-18 16:59:37 +08:00
commit ba848e218d
1001 changed files with 152333 additions and 0 deletions

View file

@ -0,0 +1,13 @@
举例说明访问连接为http://192.168.1.107/server/api?wsdl
nginx配置
server {
listen 80;
server_name 192.168.1.107;
location /server/api {
if ($args ~ 'wsdl') {
return 301 http://$server_name:$server_port/server/api?wsdl;
}
}
}
}