공부

[Nginx] 405 Not Allowed

승가비 2020. 1. 18. 19:35
728x90
# Located before location / {}
# inner HTTP
# inner HTTPS

server {
	listen       80;
	server_name  localhost;

	error_page  405     =200 $uri;

	location / {}
}

server {
	listen       443;
	server_name  localhost;

	error_page  405     =200 $uri;

	location / {}
}

 

[출처] https://stackoverflow.com/questions/24415376/post-request-not-allowed-405-not-allowed-nginx-even-with-headers-included

728x90