Welcome! Log In Create A New Profile

Advanced

NGINX Standalone Webserver

Posted by pschakravarthi 
NGINX Standalone Webserver
August 27, 2018 05:39AM
I am trying to make NGINX as standalone web server for static content. I am able to achieve download (GET) of files from NGINX. However, I am getting error 301 when I do post and 405 when I tried PUT. Can someone please advise configuration that allows me to upload files using PUT or POST ?

location /static/data {
alias /static-data/;
client_body_temp_path /tmp/;
client_body_in_file_only on;
client_body_buffer_size 128k;
client_max_body_size 100M;
autoindex on;
}
Re: NGINX Standalone Webserver
August 27, 2018 09:03AM
POST and PUT by definition are NOT static methods.
Your question contradicts your initial statement of wanting to serve static content.
Re: NGINX Standalone Webserver
August 27, 2018 01:06PM
I agree with you.. So my requirement is to upload binary files from one source (through HTTP PUT / POST) which can be served to other clients (via HTTP GET)
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 242
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready