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 |
Tags
- 서버설정
- /etc/network/interfaces
- 자료구조와 함께 배우는 알고리즘 입문
- baeldung
- resttemplate
- 자바편
- 선형대수
- iterator
- 목록처리
- 친절한SQL튜닝
- 페이징
- 코드로배우는스프링웹프로젝트
- 리눅스
- 티스토리 쿠키 삭제
- 코드로배우는스프링부트웹프로젝트
- 데비안
- ㅒ
- GIT
- network configuration
- 알파회계
- 자료구조와함께배우는알고리즘입문
- 스프링 시큐리티
- Kernighan의 C언어 프로그래밍
- 구멍가게코딩단
- 스프링부트핵심가이드
- 네트워크 설정
- 처음 만나는 AI 수학 with Python
- d
- 처음 만나는 AI수학 with Python
- 이터레이터
Archives
- Today
- Total
bright jazz music
Nginx 설정 (리액트 index.html) 본문
변경 전
server {
listen 80;
location / {
#root /usr/local/ecert24;
root /home/chainverse-apps/ecert24/front-apps/build;
index index.html index.htm;
try_files $uri $uri/ /index.htm;
}
location /api {
proxy_pass http://127.0.0.1:10000/api;
}
}
변경 후
index.htm ==> index.html
server {
listen 80;
location / {
#root /usr/local/ecert24;
root /home/chainverse-apps/ecert24/front-apps/build;
index index.html index.htm;
#index.htm ==> index.html
try_files $uri $uri/ /index.html;
}
location /api {
proxy_pass http://127.0.0.1:10000/api;
}
}
'OS 및 기타' 카테고리의 다른 글
백업 스크립트 (0) | 2023.09.21 |
---|---|
젠킨스 트리거 설정 (0) | 2023.09.18 |
우분투 mariadb 설치 (0) | 2023.04.08 |
디스크 포맷 diskpart (0) | 2023.03.24 |
USB 용량 줄어들었을 때 복구하기 (0) | 2023.02.06 |
Comments