리자

우분투 리눅스의 nginx에서 fastapi와 도메인을 연결하는 방법에 대해 설명합니다. #1

Describes how to connect fastapi and domains to nginx on Ubuntu Linux

 

 

 

영상 순서

 

1. fastapi 로 만든 그누보드6 실행
    uvicorn main:app --reload --host 0.0.0.0 --port 8000

 

2. nginx 설치
    sudo apt update
    sudo apt install nginx

 

3. nginx 설정
    server {
        listen 80;
        server_name  your-domain.com;

        location / {
                proxy_pass http://127.0.0.1:8000;
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
        }
    }

 

 4. nginx 재실행
    systemctl restart nginx

 

5. dns A 레코드 추가
    A    @    IP주소

 

=끝=


그누보드6 github 저장소
https://github.com/gnuboard/g6

 

그누보드6 사용자데모
https://g6.demo.sir.kr/

 

그누보드6 커뮤니티
https://sir.kr/main/g6/

|
댓글을 작성하시려면 로그인이 필요합니다.

그누보드6 팁자료실

그누보드6, 파이썬에 대한 팁과 자료를 올려주세요. 그누보드6 실서비스를 위한 웹서버 설정

+
제목 글쓴이 날짜 조회
1년 전 조회 671
1년 전 조회 664
1년 전 조회 945
1년 전 조회 635
1년 전 조회 962
1년 전 조회 2,071
1년 전 조회 2,957
2년 전 조회 1,768
2년 전 조회 2,742
2년 전 조회 1,358
2년 전 조회 1,912
2년 전 조회 2,548
2년 전 조회 873
2년 전 조회 1,464
2년 전 조회 1,305
2년 전 조회 1,539
2년 전 조회 1,186
2년 전 조회 1,035
2년 전 조회 1,288
2년 전 조회 946
2년 전 조회 1,410
2년 전 조회 926
2년 전 조회 776
2년 전 조회 1,259
2년 전 조회 1,313
2년 전 조회 891
2년 전 조회 1,359
2년 전 조회 1,039
2년 전 조회 1,997
2년 전 조회 874