Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- kitura
- appium
- nmap
- create table
- centos
- ubuntu
- mysql
- STF
- sshpass
- nohup
- SWIFT
- GoCD
- nGrinder
- Jupyter Notebook
- port forwarding
- perfect
- Materials
- postgresql
- PYTHON
- Jupyter
- openpyxl
- ftp
- ssh
- appium server
- postgres
- 28015
- rethinkdb
- insert
- STF_PortForwarding
- 실행권한
Archives
- Today
- Total
don't stop believing
[GitLab] 도메인 변경 본문
GitLab을 설치한 후 URL을 확인했더니 Ubuntu의 hostname이 그대로 온다. 'http://ngle-repository' 이렇게.
IP로 http://192.168.0.188로 접속해도 되지만 도메인 설정을 제대로 해보자.
먼저 ubuntu의 hosts파일을 변경한다.
$ sudo vim /etc/hosts
hosts 파일에 아래와 같이 사용할 도메인을 추가한다. 나는 gitlab.ngle.co.kr라고 추가했다.
127.0.0.1 gitlab.ngle.co.kr gitlab
127.0.0.1 localhost 127.0.1.1 ngle-repository 127.0.0.1 gitlab.ngle.co.kr gitlab
저장하고 다시 이번엔 gitlab.yml 파일을 열어보자.
해당 파일이 어디있는지 모른다면 find 명령으로 검색한다.
$ sudo find / -name gitlab.yml
내 경우 /var/opt/gitlab/gitlab-rails/etc/gitlab.yml에 존재한다.
그럼 vim으로 수정해 보자.
$ sudo vim /var/opt/gitlab/gitlab-rails/etc/gitlab.yml
gitlab.yml 파일을 열어서 host의 값에 사용하려는 도메인으로 수정한다.
## Web server settings (note: host is the FQDN, do not include http://) host: gitlab.ngle.co.kr port: 80 https: false
저장 후 gitlab을 재시작 해준다.
sudo gitlab-ctl restart
'Tools > Git & GitLab' 카테고리의 다른 글
git 기본 명령 (0) | 2018.06.11 |
---|---|
ssh key 생성하고 적용하기 (1) | 2017.12.26 |
Gitlab 프로젝트 만들고 사용해 보기 (0) | 2017.11.09 |
[GitLab] Backup & Restore (0) | 2017.09.04 |
[GitLab] Ubuntu에 GitLab 설치 (0) | 2017.08.30 |
Comments