blob: 9114511efe45de595564380986be127630c837eb [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {EggAppConfig, EggAppInfo, PowerPartial} from 'midway';
export type DefaultConfig = PowerPartial<EggAppConfig>;
export default (appInfo: EggAppInfo) => {
const config = {} as DefaultConfig;
// use for cookie sign key, should change to your own and keep security
config.keys = appInfo.name + '_1599135676543_3920';
// add your config here
config.middleware = [];
/**
* dubbo config
*
* application 当前的应用标识
* register 注册中心地址
* support registry mode
* 1、 zookeeper 'localhost:2181,localhost:2182,localhost:2183'
* 2、 nacos 'nacos://localhost:2181'
* nacos 注册地址要以 nacos:// 开头
*
*/
config.dubbo = {
application: 'hello-midway',
// zookeeper 的链接
// register: 'localhost:2181,localhost:2182,localhost:2183',
// nacos 的链接 要以 nacos:// 开头
register: 'nacos://localhost:8848',
};
return config;
};