Remove cgit landing pages

I can use an org to make the URLs in gitea slightly nicer, which will do for now
This commit is contained in:
Jake Howard
2020-04-11 17:37:05 +01:00
parent 17f5aa921b
commit 4f5a99263f
4 changed files with 3 additions and 65 deletions

View File

@ -10,12 +10,10 @@ services:
- USER_GID={{ docker_user.id }}
labels:
- "traefik.enable=true"
- "traefik.http.routers.gitea.rule=(Host(`git.theorangeone.net`) || Host(`git.0rng.one`)) && PathPrefix(`/gitea`)"
- "traefik.http.routers.gitea.rule=(Host(`git.theorangeone.net`) || Host(`git.0rng.one`))"
- "traefik.http.routers.gitea.tls=true"
- "traefik.http.routers.gitea.tls.certresolver=le"
- "traefik.http.services.gitea-gitea.loadbalancer.server.port=3000"
- "traefik.http.middlewares.gitea-strip.stripprefix.prefixes=/gitea"
- "traefik.http.routers.gitea.middlewares=gitea-strip"
ports:
- "{{ wireguard.clients.intersect.ip }}:3022:3022"
volumes:
@ -47,30 +45,3 @@ services:
- POSTGRES_DB=gitea
- BACKUP_KEEP_MONTHS=1
- BACKUP_KEEP_WEEKS=1
cgit:
image: theorangeone/docker-cgit:latest
container_name: cgit
restart: unless-stopped
environment:
- USER_UID={{ docker_user.id }}
- USER_GID={{ docker_user.id }}
volumes:
- ./repos:/data/git:ro
- ./cgit/cgitrc:/config/cgitrc:ro
- ./cgit/repos.txt:/config/repos.txt:ro
labels:
- "traefik.enable=true"
- "traefik.http.routers.cgit.rule=Host(`git.theorangeone.net`) || Host(`git.0rng.one`)"
- "traefik.http.routers.cgit.tls=true"
- "traefik.http.routers.cgit.tls.certresolver=le"
gitea-cgit-adapter:
image: theorangeone/gitea-cgit-adapter:latest
restart: unless-stopped
command: /app/gitea-cgit-adapter /etc/gitea.ini /etc/cgit-repos.txt --interval 600
depends_on:
- gitea
volumes:
- ./gitea/gitea/conf/app.ini:/etc/gitea.ini:ro
- ./cgit/repos.txt:/etc/cgit-repos.txt