mod_http_files: Specify method in HTTP route

This commit is contained in:
Matthew Wild 2012-04-27 18:40:44 +01:00
parent c06a35c238
commit e9de5a1a10

View file

@ -51,7 +51,7 @@ end
module:provides("http", {
route = {
["/*"] = serve_file;
["GET /*"] = serve_file;
};
});