# gateway-golang **Repository Path**: phil_fot/gateway-golang ## Basic Information - **Project Name**: gateway-golang - **Description**: Go 语言实现 API 网关基础功能 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/gateway-golang - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 6 - **Created**: 2021-08-30 - **Last Updated**: 2021-08-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # API 网关 ```cassandraql Go SDK > 1.11 ``` ## 获取代码并运行(go mod 管理项目) ```shell git clone https://github.com/hzwy23/gateway.git cd gateway go mod tidy go run main.go ``` ## 配置介绍 ```yml server: port: 8790 contextPath: / timeout: 10 host: registerCenter: refreshFrequency: 30 eureka: serviceUrls: [ http://localhost:8761 ] router: gateway: ignoredPatterns: [ /gateway, /js, /css ] sensitiveHeaders: [Cookie] routers: user: path: /map/** serviceId: map stripPrefix: true timeout: 30 ai: path: /gitchat/** url: https://gitbook.cn stripPrefix: false timeout: 5 ``` ## 测试地址: ```shell http://localhost:8790/gitchat/columns/category/5d8b7c3786194a1921979123?page=1 ```