LJWLgl / gateway

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

API 网关

Go SDK > 1.11

获取代码并运行(go mod 管理项目)

git clone https://github.com/hzwy23/gateway.git
cd gateway
go mod tidy
go run main.go

配置介绍

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

测试地址:

 http://localhost:8790/gitchat/columns/category/5d8b7c3786194a1921979123?page=1

About


Languages

Language:Go 100.0%