관리 메뉴

bright jazz music

Nginx 설정 (리액트 index.html) 본문

OS 및 기타

Nginx 설정 (리액트 index.html)

bright jazz music 2023. 5. 3. 18:49

변경 전

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 및 기타' 카테고리의 다른 글

윈도우 ip 수동 변경  (0) 2024.04.16
Git 병합  (0) 2024.03.07
우분투 mariadb 설치  (0) 2023.04.08
USB 용량 줄어들었을 때 복구하기  (0) 2023.02.06
Comments