nginx 配置服务端地址
server {
listen 8099;
server_name lianghj.top;
#charset koi8-r;
#access_log logs/host.access.log main;
location /api{
proxy_pass https://lianghj.top:8888/api/private/v1;
}
location / {
root html;
index index.html index.htm;
}