Skip to main content

Questions tagged [gitea]

-1 votes
1 answer
228 views

My server exposes two ssh ports: one for the server itself, and one for a git daemon (gitea). My local ~/.ssh/config: Host server hostname 1.2.3.4 port 22 user foo identityfile ~/.ssh/...
lonix's user avatar
  • 1,119
0 votes
2 answers
541 views

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 ...
Łukasz Zaroda's user avatar
0 votes
1 answer
754 views

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' ...
Alex Hope O'Connor's user avatar
0 votes
0 answers
392 views

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 [...
tai's user avatar
  • 131
0 votes
1 answer
63 views

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 ...
Audra Jacot's user avatar
0 votes
1 answer
2k views

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 ...
MarekChr's user avatar
  • 103
3 votes
1 answer
7k views

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 ...
Robert Munteanu's user avatar
0 votes
1 answer
481 views

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 ...
night-gold's user avatar
0 votes
2 answers
2k views

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 ...
Christian Galo's user avatar
0 votes
1 answer
2k views

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 ...
Wutipong Wongsakuldej's user avatar
0 votes
1 answer
748 views

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] ...
Patrick Bucher's user avatar
0 votes
1 answer
175 views

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 ...
Patrick Bucher's user avatar
1 vote
0 answers
717 views

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: <VirtualHost *:443> ServerAdmin [email protected] ...
user0102030's user avatar
1 vote
1 answer
9k views

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:...
Shaz Hemani's user avatar
5 votes
1 answer
5k views

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)
Franklin Piat's user avatar