Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to set up a git self-hosted server with gitea and nginx via docker #3

Open
joephon opened this issue Oct 19, 2019 · 0 comments
Open
Labels
小扎记 How to 系列

Comments

@joephon
Copy link
Owner

joephon commented Oct 19, 2019

Dependencies

  • gitea
  • nginx-
  • docker
  • docker-compose

OS

Ubuntu 16

Step 1 install docker && docker-compose

sudo apt-get install docker docker-compose

Step 2 create your project

mkdir gitea && cd gitea
vim docker-compose.yaml

write sth in your docker-compose file

version: "2"

networks:
  gitea:
    external: false

services:
  server:
    image: gitea/gitea:latest
    environment:
      - DB_TYPE=mysql
      - DB_HOST=db:3306
      - DB_NAME=gitea
      - DB_USER=gitea
      - DB_PASSWD=gitea
    restart: always
    networks:
      - gitea
    volumes:
      - ./gitea:/data
    ports:
      - "3000:3000"
      - "222:22"
    depends_on:
      - db

  db:
    image: mysql:5.7.27
    restart: always
    environment:
      - MYSQL_ROOT_PASSWORD=gitea
      - MYSQL_USER=gitea
      - MYSQL_PASSWORD=gitea
      - MYSQL_DATABASE=gitea
    networks:
      - gitea
    volumes:
      - ./mysql:/var/lib/mysql

set up your gitea server via docker

docker-compose up -D

Step 3 set up a nginx server

sudo apt-get install -y nginx

Step 2 bing your domain with nginx

sudo vim /etc/nginx/site-enable/gitea

The nginx config file might look like as below

server {
  listen 80;
  server_name your.domain.com;  
  location / {
     proxy_pass      http://localhost:[your port]/;   
     proxy_set_header Host   $host;           
     proxy_set_header X-Real-IP;      
     proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  }
}
sudo nginx -s reload

Bingo~

Open a browser and try to visit your gitea web site

这篇文章价值两元

@joephon joephon changed the title tesing3 How to set up a git self-hosted server Oct 20, 2019
@joephon joephon changed the title How to set up a git self-hosted server How to set up a git self-hosted server with gitea and nginx Oct 20, 2019
@joephon joephon changed the title How to set up a git self-hosted server with gitea and nginx How to set up a git self-hosted server with gitea and nginx via docker Oct 20, 2019
@joephon joephon added the 小扎记 How to 系列 label Oct 22, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
小扎记 How to 系列
Projects
None yet
Development

No branches or pull requests

1 participant