Go to file
程广 f6f31e56c4 add install script 2023-12-27 17:22:18 +08:00
.vscode fix REST api 2023-12-13 21:09:01 +08:00
admin make proxy yse directive and forbidden get/set admin by api 2023-12-14 23:47:04 +08:00
adminui fix normalize bug 2023-12-13 10:59:47 +08:00
handler add config and add log message 2023-12-20 17:49:02 +08:00
model fix and add add config for cloudops 2023-12-18 14:11:06 +08:00
public fix file handler and update logger 2023-12-10 01:08:39 +08:00
server remove change to static file 2023-12-25 13:34:29 +08:00
utils add install script 2023-12-27 17:22:18 +08:00
vendor add gzip 2023-12-21 18:36:51 +08:00
.gitignore add target to ignore 2023-12-18 13:11:34 +08:00
LICENSE Initial commit 2023-12-06 20:58:08 +08:00
Makefile add install script 2023-12-27 17:22:18 +08:00
README.md fix spell 2023-12-17 10:33:29 +08:00
config.json add install script 2023-12-27 17:22:18 +08:00
go.mod add gzip 2023-12-21 18:36:51 +08:00
go.sum add gzip 2023-12-21 18:36:51 +08:00
gohttp.go make proxy yse directive and forbidden get/set admin by api 2023-12-14 23:47:04 +08:00
gohttpd.log add gzip 2023-12-21 18:36:51 +08:00
gohttpd.service add install script 2023-12-27 17:22:18 +08:00
install.sh add install script 2023-12-27 17:22:18 +08:00
main.go add api 2023-12-13 17:59:14 +08:00
nginx.conf add config and add log message 2023-12-20 17:49:02 +08:00

README.md

gohttp

目标

实现一个类似nginx功能的http服务器

功能

  • 支持静态文件
  • Proxy
  • 支持rewrite
  • 支持TLS
  • 支持端口复用

配置

{
   "logging" :{
        "appenders": {
            "out" :{
                "type": "file",
                "options":{
                    "file": "gohttpd.log"
                }
            }
        },
        "categories": {
            "default": {
                "appenders": [ "out" ],
                "level": "debug"
            }
        }
    },
    "admin" : {
        "name": "admin",
        "port" : 8088,
        "username": "admin",
        "password": "admin",
        "directives":[
            "Set-Header Access-Control-Allow-Origin *"
        ],
        "paths": [
            {
                "path": "/",
                "root": "./adminui",
                "default": "index.html"
            }
        ]
    },
    "servers":[{
        "port" : 8080,
        "name":"test",
        "paths":[
            {
                "path": "/",
                "root": "/home/kingecg/code/gohttp/public/",
                "default": "index.html"
            },
            {
                "path": "/ws",
                "upstreams":["http://localhost:3000"],
                "directives":[
                    "HostSchemas $target",
                    "HeaderOrigin",
                    "Path /ws /",
                    "RemoveCookie token"
                ]
            }
        ]
    }] 
}
  • logging 日志配置
  • admin 管理后台配置
  • servers 服务器配置

日志采用自己实现的类log4j库目前只支持console 和file两种appeder

servers 配置

  • port 端口
  • name 服务器名称
  • paths 路径配置
  • certfile 证书文件
  • keyfile 证书密钥文件
  • directives 指令 针对response的指令目前只实现了set-header

paths 配置

  • path 路径
  • root 根目录
  • default 默认文件
  • upstreams 代理地址
  • directives 这里指令针对的是代理请求,有以下几种:
    • HostSchemas [$target] 代理地址
    • HeaderOrigin 代理请求时添加Origin头
    • Path [/ws] [/] 代理请求时重写URL路径用第二个参数替换url中的第一个部分
    • RemoveCookie [token] 代理请求时删除cookie中的某些字段

指令系统

指令系统采用了nginx的指令系统指令的格式为

指令名 参数1 参数2 ... 参数n

指令系统用来对特定的request/response进行处理。目前只支持

  • 返回的response中设置header
  • 反向代理时,修改发送到上游服务器的请求

Packages

Server

RestMux 提供

  • Restful API注册功能的 ServerMux
  • Route
  • Url路径参数解析(形如:/user/:id)
  • 中间件
  • server管理

model

提供模型定义

admin

管理后台api

handler

目录 handler

提供文件和代理两种handler 其中proxy handler 提供简单的负载均衡和会话粘滞功能

构建

make clean && make build

在target目录下生成可执行文件

运行

./gohttpd