Welcome! Log In Create A New Profile

Advanced

grouping locations for file upload

Posted by tombell 
grouping locations for file upload
June 20, 2011 02:28AM
I recently put nginx in front of apache to act as a reverse proxy.

Up until now Apache handled directly the requests and file uploads

Now, I need to configure nginx so that it sends file upload requests to apache.

I have several endpoints for uploading files (within the same server - I have just 1 server) and I am trying to see if there is a quick way to define one configuration options in nginx for all my endpoints

Right now the below refers just to one file upload entry

location /banner_upload {
proxy_pass http://backend:8080/banner/save;
}




location /banner/save {
# Pass altered request body to this location
upload_pass /banner_upload;

# Store files to this directory
# The directory is hashed, subdirectories 0 1 2 3 4 5 6 7 8 9 should exist
upload_store /tmp 1;

# Allow uploaded files to be read only by user
#upload_store_access user:r;

# Set specified fields in request body
upload_set_form_field "${upload_field_name}_name" $upload_file_name;
upload_set_form_field "${upload_field_name}_content_type" $upload_content_type;
upload_set_form_field "${upload_field_name}_path" $upload_tmp_path;

# Inform backend about hash and size of a file
upload_aggregate_form_field "${upload_field_name}_md5" $upload_file_md5;
upload_aggregate_form_field "${upload_field_name}_size" $upload_file_size;

upload_pass_form_field "(.*)";
}

But the above entry is just for 1 endpoint

I have like 7 different ones

Do I need to make a new entry foreach of my endpoints or is there a way I can group them

Thanks
Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 170
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