Skip to content
Merged

Next #11

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ http {
client_max_body_size 0;

location ~ "^/[a-z0-9]{32}/geode/" {
if ($request_method !~ ^(DELETE|GET|POST|OPTIONS)$) {
if ($request_method !~ ^(DELETE|GET|POST|PUT|OPTIONS)$) {
return 405;
}
rewrite "^/[a-z0-9]{32}/geode/(.*)" /$1 break;
Expand Down