add for docker-compose and nginx #86
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
#add docker-compose
#cat docker-compose.yaml
version: "3.9"
services:
hubproxy:
image: ghcr.io/sky22333/hubproxy:latest
container_name: hubproxy
ports:
- "5000:5000"
volumes:
- ./config.toml:/root/config.toml
restart: always
#add config for nginx
server {
listen 80;
server_name example.com; # 按需修改
}
这是什么?nginx反代配置示例吗?
这个没必要,自己配就行了