summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example/travels.conf4
-rw-r--r--src/send_file.cc6
2 files changed, 7 insertions, 3 deletions
diff --git a/example/travels.conf b/example/travels.conf
index 3972bc0..89bba59 100644
--- a/example/travels.conf
+++ b/example/travels.conf
@@ -11,5 +11,5 @@ geojson.database = timezones.geojson.json
# nginx
site.sendfile.header = X-Accel-Redirect
-site.sendfile.path = /media/
-site.sendfile.static_path = /static/
+site.sendfile.path = /media
+site.sendfile.static_path = /static
diff --git a/src/send_file.cc b/src/send_file.cc
index 8611b6f..e5bf92b 100644
--- a/src/send_file.cc
+++ b/src/send_file.cc
@@ -29,7 +29,11 @@ public:
}
auto resp = transport->create_ok_data("");
- resp->add_header(header_, path_ + std::string(relative_path));
+ std::string value = path_;
+ if (relative_path.empty() || relative_path.front() != '/')
+ value.push_back('/');
+ value.append(relative_path);
+ resp->add_header(header_, std::move(value));
return resp;
}