2022-02-22 14:38:51 +00:00
|
|
|
#include "crow.h"
|
|
|
|
#include "crow/middlewares/cors.h"
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
// Enable CORS
|
|
|
|
crow::App<crow::CORSHandler> app;
|
|
|
|
|
|
|
|
// Customize CORS
|
|
|
|
auto& cors = app.get_middleware<crow::CORSHandler>();
|
|
|
|
|
2022-03-08 13:33:08 +00:00
|
|
|
// clang-format off
|
|
|
|
cors
|
|
|
|
.global()
|
|
|
|
.headers("X-Custom-Header", "Upgrade-Insecure-Requests")
|
|
|
|
.methods("POST"_method, "GET"_method)
|
|
|
|
.prefix("/cors")
|
|
|
|
.origin("example.com")
|
|
|
|
.prefix("/nocors")
|
|
|
|
.ignore();
|
|
|
|
// clang-format on
|
2022-02-22 14:38:51 +00:00
|
|
|
|
|
|
|
CROW_ROUTE(app, "/")
|
|
|
|
([]() {
|
|
|
|
return "Check Access-Control-Allow-Methods header";
|
|
|
|
});
|
|
|
|
|
|
|
|
CROW_ROUTE(app, "/cors")
|
|
|
|
([]() {
|
|
|
|
return "Check Access-Control-Allow-Origin header";
|
|
|
|
});
|
|
|
|
|
|
|
|
app.port(18080).run();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|