1. 기본 설정
스프링부트를 사용하기 위해 자바 jdk를 서버에 설치한다.
$ javac
$ sudo apt install default-jdk
그리고 , 자신만의 spring boot 템플릿을 만들어서 깃허브에 업로드한다.
이후 자신의 git에서 템플릿을 clone해준다.
(나의 git 템플릿은 private repository에 업로드해서 clone이 어려우니 직접 만들기를 권한다.)
$ cd /var/www/
$ sudo git clone https://github.com/defwdahyun0/api-spring-boot-templete
sites-available폴더의 conf 파일을 수정해준다.
이 때 수정하는 conf는 꼭 default가 아니어도 된다.
$ cd api-spring-boot-templete/
$ sudo vim /etc/apache2/sites-available/000-default.conf
DocumentRoot 경로를 위처럼 수정해준다.
sudo systemctl restart apache2
서버를 재시작하면 기본적인 설정이 마무리된다.
'👩💻 Programming > Backend' 카테고리의 다른 글
Mysql Workbench ERD 다이어그램 생성 방법 (0) | 2021.07.14 |
---|---|
[Flask] mac Flask 환경 구축 (0) | 2021.06.09 |
[Node.js] 휴대폰 인증, 이메일 인증 구현하기 (0) | 2021.05.08 |
[Node.js] Ubuntu+Nginx+Node.js 사용 설정 (0) | 2021.04.13 |
[SpringBoot] Intellij SpringBoot 환경설정 + Proxy 설정 (0) | 2021.04.11 |