nginx에 static파일을 post로 요청하면 405 에러가 발생한다. ( get 은 정상 작동 get만 쓰라는건가?)
curl -d -O URL 해보면 다음과 같은 에러가 보인다.
$ curl -d -O url
<html>
<head><title>405 Not Allowed</title></head>
<body bgcolor="white">
<center><h1>405 Not Allowed</h1></center>
<hr><center>nginx/1.10.2</center>
</body>
</html>
아파치 서버에서는 아무 문제 없던 코드라 당황.
구글링해서 설정 추가 하니 잘 동작한다.
405에러인경우 에러페이지를 던지는 대신 요청한 URL을 주는 방식인것 같다.
error_page 405 = $uri;
참고 :
http://blog.brainless.in/2012/01/server-static-files-from-nginx-for-post.html
'지식창고 > 프로그램' 카테고리의 다른 글
CFile 에서 utf-8 파일 읽고 쓰기 (0) | 2020.06.16 |
---|---|
firefox Dns over HTTPS (DOH) 적용 하기 (0) | 2018.05.17 |
크롬 마우스 제스쳐 확장 (0) | 2016.09.21 |
ConEmu 설정 (0) | 2016.08.31 |
Laravel - 기본 라우팅 (0) | 2015.05.19 |