Ai
3 Star 35 Fork 6

go-admin/example

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
nginx.conf 418 Bytes
一键复制 编辑 原始数据 按行查看 历史
honkui 提交于 2020-04-17 14:30 +08:00 . update example
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
upstream api.blog.com {
server 127.0.0.1:9033;
}
server {
listen 80;
server_name xxxxx.com;
location / {
proxy_pass http://xxxxx.com/;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/go-admin/example.git
git@gitee.com:go-admin/example.git
go-admin
example
example
master

搜索帮助