/api로 시작하는 요청을 127.0.0.1:7000의 서비스로 전달하는 Nginx 구성은 무엇인가요?
/api
127.0.0.1:7000
location /api { root http://127.0.0.1:7000; }
error_page /api http://127.0.0.1:7000;
auth_basic_user_file http://127.0.0.1:7000;
location /api { proxy_pass http://127.0.0.1:7000; }