nginx 연동 후 admin 에서 405 오류 발생할때 location /mqadmin/api/ { rewrite ^ $request_uri; rewrite ^/mqadmin/api/(.*) /api/$1 break; return 400; proxy_pass http://mqadmin$uri; } location /mqadmin { rewrite ^/mqadmin$ /mqadmin/ permanent; rewrite ^/mqadmin/(.*)$ /$1 break; proxy_pass http://mqadmin; proxy_buffering off; proxy_set_header Host $http_host; proxy_set_header X-Real-IP $remote_addr; proxy_set_he..