Nginx https rewrite turns POST to GET
- by x7311
My proxy server runs on ip A and this is how people access my web service. The nginx configuration will redirect to a virtual machine on ip B.
For the proxy server on IP A, I have this in my sites-available
server {
listen 443;
ssl on;
ssl_certificate nginx.pem;
ssl_certificate_key nginx.key;
…