Use cgit as a simple frontend to gitea
This commit is contained in:
@ -15,7 +15,7 @@ TEMP_PATH = /data/gitea/uploads
|
||||
APP_DATA_PATH = /data/gitea
|
||||
SSH_DOMAIN = git.theorangeone.net
|
||||
HTTP_PORT = 3000
|
||||
ROOT_URL = https://git.theorangeone.net/
|
||||
ROOT_URL = https://git.theorangeone.net/gitea/
|
||||
DISABLE_SSH = false
|
||||
SSH_PORT = 22
|
||||
SSH_LISTEN_PORT = 3022
|
||||
|
11
ansible/roles/docker/files/gitea/cgitrc
Normal file
11
ansible/roles/docker/files/gitea/cgitrc
Normal file
@ -0,0 +1,11 @@
|
||||
#
|
||||
# cgit config
|
||||
#
|
||||
|
||||
css=/cgit.css
|
||||
logo=/cgit.png
|
||||
source-filter=/bin/syntax-highlighting.sh
|
||||
virtual-root=/
|
||||
mimetype-file=/etc/mime.types
|
||||
robots=noindex, nofollow
|
||||
include=/config/repos.txt
|
@ -10,10 +10,12 @@ services:
|
||||
- USER_GID={{ docker_user.id }}
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.gitea.rule=Host(`git.theorangeone.net`)"
|
||||
- "traefik.http.routers.gitea.rule=Host(`git.theorangeone.net`) && PathPrefix(`/gitea`)"
|
||||
- "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:
|
||||
@ -30,3 +32,30 @@ services:
|
||||
environment:
|
||||
- POSTGRES_PASSWORD=gitea
|
||||
- POSTGRES_USER=gitea
|
||||
|
||||
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`)"
|
||||
- "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
|
||||
|
Reference in New Issue
Block a user