码迷,mamicode.com
首页 > 其他好文 > 详细

config.go

时间:2017-08-31 10:59:47      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:github   地址   msu   文件内容   top   conf   .com   失败   config   

package main

import (
    "io/ioutil"

    "github.com/go-yaml/yaml"
)

// 代理配置数据结构
type ProxyConfig struct {
    Bind         string    `yaml:"bind"`  //前置服务器地址
    WaitQueueLen int       `yaml:"wait_queue_len"` //等待队列大小
    MaxConn      int       `yaml:"max_conn"`  // 最大连接数
    Timeout      int       `yaml:"timeout"`  //连接超时时间
    FailOver     int       `yaml:"failover"`  //失败重试次数
    Backend      []string  `yaml:"backend"`  //被代理服务器 列表
    Log          LogConfig `yaml:"log"`  //日志配置
    Stats        string    `yaml:"stats"`  //监控服务地址   用来查看服务器状态
}

// 日志配置结构信息
type LogConfig struct {
    Level string `yaml:"level"`  //  日志级别
    Path  string `yaml:"path"`  //  日志存放地址
}

// 解析配置文件
func parseConfigFile(filePath string) error {
    if conf, err := ioutil.ReadFile(filePath); err == nil {  // 读取配置文件
        if err = yaml.Unmarshal(conf, &Config); err != nil {  //解析toml文件内容到  Config中
            return err
        }
    } else {
        return err
    }
    return nil
}

config.go

标签:github   地址   msu   文件内容   top   conf   .com   失败   config   

原文地址:http://www.cnblogs.com/zhangboyu/p/7456713.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!