Etc/TroubleShooting

Proxypass 특정 파일 제외 방법 (예외처리)

nyub 2022. 8. 26. 16:01
반응형
ProxyPass /health.html !
ProxyPass / http://localhost:7002/
ProxyPassReverse / http://localhost:7002/
  <Location />
     Order allow,deny
     Allow from all
  </Location>

 

ProxyPass /health.html !을 해주시면 health.html은 프록시로 넘어가지 않습니다

반응형