changed values for send_file_mode config parameter:
0 - winix will read the content of the file and send it back to the webserver 1 - winix will use send_file_header header with a full path to the file 2 - winix will use send_file_header header with a relative path to the file
This commit is contained in:
@@ -544,22 +544,25 @@ public:
|
||||
std::wstring title_separator;
|
||||
|
||||
// how to send static files (uploaded by users) to the webserver
|
||||
// 0 - full path to a file in send_file_header header
|
||||
// 1 - relative path to a file in send_file_header (need http_send_file_relative_prefix set)
|
||||
// 0 - winix will read the content of the file and send it back to the webserver
|
||||
// 1 - winix will use send_file_header header with a full path to the file
|
||||
// 2 - winix will use send_file_header header with a relative path to the file
|
||||
// default: 0
|
||||
// for Apache set: 0
|
||||
// for Lighttpd set: 0
|
||||
// for Nginx set: 1
|
||||
// 0 can be be used with all webservers but it requires to copy the whole file content
|
||||
// you can omit copying the content with values 1 or 2:
|
||||
// for Apache set: 1
|
||||
// for Lighttpd set: 1
|
||||
// for Nginx set: 2
|
||||
int send_file_mode;
|
||||
|
||||
// http header recognized by www server as a file to send back
|
||||
// http header recognized by www server as a file to send back, used if send_file_mode is 1 or 2
|
||||
// default: X-SENDFILE
|
||||
// for Apache set: X-SENDFILE
|
||||
// for Lighttpd set: X-LIGHTTPD-send-file
|
||||
// for Nginx set: X-Accel-Redirect
|
||||
// for Apache set: X-SENDFILE (Apache needs an external module: https://tn123.org/mod_xsendfile/)
|
||||
// for Lighttpd set: X-LIGHTTPD-send-file (https://redmine.lighttpd.net/projects/1/wiki/X-LIGHTTPD-send-file)
|
||||
// for Nginx set: X-Accel-Redirect (https://nginx.org/en/docs/http/ngx_http_core_module.html#internal)
|
||||
std::wstring send_file_header;
|
||||
|
||||
// relative prefix used for sending static files if send_file_mode is 1
|
||||
// relative prefix used for sending static files if send_file_mode is 2
|
||||
// default: "upload-files-internal"
|
||||
// this prefix is added at the beginning of a relative file path e.g.
|
||||
// /upload-files-internal/simplefs/normal/some_directories/file.jpg
|
||||
|
Reference in New Issue
Block a user