[Nginx] Location 블록 사용법
2022. 12. 2. 19:33
웹/Nginx
Location 블록이란? location 블록은 Nginx에서 정의되어 있는 웹사이트의 특정 URL 을 조작하는데 사용되는 블록입니다. Server 블록에 정의되어 있는 웹사이트마다 Location 을 지정할 수 있으며, Location 을 여러 번 정의할 수 있습니다. Location 블록의 URL 구성과 패턴 location은 URI 경로의 일부인 prefix string이거나 정규식 표현이 될 수 있습니다. 다음 예시는 /some/path/document.html 과 같은 경로의 요청을 처리합니다. // nginx.conf location /some/path { ... } location context 안에 있는 directive는 요청을 어떻게 처리할지 정할 수 있습니다. 정적 파일(static..