server {
# List port
listen 8896;
server_name wychao.com;
location / {
root /Users/wyc/data/mygit/vueAdmin-template/dist/;
index index.html;
try_files $uri $uri/ /index.html;
}
location /status {
content_by_lua_block {
local cjson = require "cjson"
local ser = {name = "waimai",host = "saasapi.localdomain",port = 38811, redis = "online",partnerStatus = "failed to connect testetstsetttsett:xxxxxxxx",time = ngx.localtime()}
local result = {}
table.insert(result,ser)
ngx.say(cjson.encode(result))
}
}
}
vue
Posted mentalidade
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue相关的知识,希望对你有一定的参考价值。
以上是关于vue的主要内容,如果未能解决你的问题,请参考以下文章