아무거나

특정 url path에 접근할 때 서버 경로에 있는 파일 불러오기 본문

Infra/Nginx

특정 url path에 접근할 때 서버 경로에 있는 파일 불러오기

전봉근 2020. 6. 4. 23:58
반응형

 

  • 특정 url path에 접근할 때 서버 경로에 있는 파일 불러오기 [nginx.conf]

      ...
          server {
              ...
                  # 해당 http://localhost/upLoadFile/file.jpg 에 접근하면 해당 file.jpg 파일로 접근할 수 있다.
                  location /upLoadFile {
                      alias /home/bkjeon/files;
                  }
              ...
          }
      ...
    
반응형
Comments