02 2017 档案
摘要:vm.$options 类型: Object 只读 详细: 用于当前 Vue 实例的初始化选项。需要在选项中包含自定义属性时会有用处: new Vue({ customOption: 'foo', created: function () { console.log(this.$options.cu
阅读全文
摘要:chown postgres /etc/ssl/private/ssl cert snakeoil.key chgrp postgres /etc/ssl/private/ssl cert snakeoil.key chmod 740 /etc/ssl/private/ssl cert snakeo
阅读全文
摘要:参考 http://nginx.org/en/docs/http/ngx_http_log_module.html?&_ga=1.92028562.949762386.1481787781 log_format https://www.goaccess.io/man custom log 展开 go
阅读全文
摘要:psql create database jasygl encoding='UTF8' TEMPLATE = template0; 命令行 备份 pg_dump dabase_name back.sql; 恢复 psql dabase_name
阅读全文
摘要:安装pg创建数据库xxx设置用户密码111111 apt get install postgresql su postgres psql create database xxx; alter user postgres with password '111111'; \c xxx; \d \q ex
阅读全文