Questions tagged [gitea]

16 questions
5
votes
1 answer

Monitor Gitea with Prometheus

I have deployed Gitea. How can I want to monitor it with Prometheus ? I have tried to scape the /metrics but I get no metrics (HTTP/404)
3
votes
1 answer

podman: map container user to host user for shared volume permissions

I am trying to set up gitea using podman. I would like to have the data volume mapped to a host directory, because it allows me to easily inspect and backup the data the container process executed by a specific host user Podman is executed by the…
1
vote
0 answers

How to proxy a subdomain to a port in apache

I want to proxy git.example.com to example.com:3000 for gitea. I also want to enable https on the subdomain. Here is my configuration: ServerAdmin webmaster@example.com ServerName git.example.com ServerAlias…
1
vote
1 answer

SSH connection not working in gitea

I have setup gitea using docker-compose, External SSH port of my machine is 4444 which I set in sshd_config version: '2' volumes: gitea: postgres: networks: gitea: external: false services: server: image: gitea/gitea:latest …
0
votes
0 answers

Support two task tracker links in Gitea

Recently our company had changed task tracker from Youtrack to Openproject. Gitea history contains large number of commits with links to Youtrack tasks via codes like "TSK-1234 ", where "TSK-1234" is a clickable link. Also Gitea…
0
votes
2 answers

"unexpected EOF" error when trying to pair Woodpecker CI served through the Caddy with Gitea

you are my only hope. I'm pulling my hair out. I try to do an incredibly simple thing, pair Woodpecker CI instance with Gitea instance. I have a running Gitea on a separate host. I have an oauth2 application for Woodpecker created in my user's…
0
votes
1 answer

Docker compose gitea remote ssh connection refused

I have setup Gitea on an Ubuntu server using this docker-compose config: version: '3.9' services: db: image: docker.io/bitnami/postgresql:15 volumes: - 'db_data:/bitnami/postgresql' environment: - POSTGRESQL_DATABASE=gitea …
0
votes
0 answers

Gitea instance is being brute-forcely attacked

My Gitea instance is being brute-forced just as I write this text: gitea | Invalid user yinsen from 94.23.30.184 port 55154 gitea | Connection closed by invalid user yinsen 94.23.30.184 port 55154 [preauth] gitea | Invalid user zhaoyy from…
tai
  • 131
0
votes
1 answer

Multiple web service (using HTTP/HTTPS protocol) in single baremetal machine

I am a newbie for web and network stuff. I want to hosting the following web services for my personal use: Gitea Nextcloud pypiserver (Private pypi server) Ktra (private rust registry server) I only have one machine which only have single network…
0
votes
1 answer

Nginx returns bad gateway when forwarding even when service is up and running and port is correct

I set up Nginx 1.23.2 on Debian 10 to forward specific requests to port 3999 on which gitea is running at. Nginx configuration: server { listen 443 ssl; server_name www.subdomain.domain.com…
MarekChr
  • 103
0
votes
1 answer

GIt lfs on s3 using gitea can't clone

We are doing a test install of gitea and trying to use the gitea lfs to s3 feature. The configuration is straightforward and we did it like that: [lfs] #PATH = /opt/gitea/data/lfs STORAGE_TYPE = minio MINIO_ACCESS_KEY_ID =…
0
votes
2 answers

ssh-keygen unable to verify key "unknown option -- Y"

Context: I am trying to verify my public key on a Gitea instance. Gitea provides a token for me to generate a signature; The instructions say: echo -n 'TOKEN_PROVIDED' | ssh-keygen -Y sign -n gitea -f PATH_TO_PUBLIC_KEY When I do this, ssh-keygen…
0
votes
1 answer

gitea ask for `gitea` password on TortoiseGit and SourceTree

I have a Manjaro system running gitea server. Now when I tried to do something with the repos on the server, eg. cloning or pushing, using TortoiseGit or SourceTree, the server will ask for a password for the account gitea. When I do the same…
0
votes
1 answer

Gitea offers wrong SSH key

I'm running Gitea on a virtual machine that is publicly accessible under gitea.myorg.foo. Here's the server part relevant to my SSH configuration of my configuration file: [server] …
0
votes
1 answer

Gitea under Configuration Management: Generated and Static Settings

I need to set up a Gitea server for an organization. The setup itself is easy, and I managed to bring up Gitea within an hour when installing it manually. However, my organisation uses a configuration management tool, which handles secrets and…
1
2