From 47c949d6c007748fb6ab2d70bb50d24cd30a6b14 Mon Sep 17 00:00:00 2001 From: Casey Bodley Date: Mon, 15 May 2017 18:08:07 -0400 Subject: [PATCH] rgw: remove fastcgi from default rgw frontends Signed-off-by: Casey Bodley --- src/common/config_opts.h | 2 +- src/rgw/rgw_main.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/config_opts.h b/src/common/config_opts.h index 405aeacf6d8f..b8ae97dbc22c 100644 --- a/src/common/config_opts.h +++ b/src/common/config_opts.h @@ -1632,7 +1632,7 @@ OPTION(rgw_bucket_default_quota_max_size, OPT_LONGLONG, -1) // Max size of objec OPTION(rgw_expose_bucket, OPT_BOOL, false) // Return the bucket name in the 'Bucket' response header -OPTION(rgw_frontends, OPT_STR, "fastcgi, civetweb port=7480") // rgw front ends +OPTION(rgw_frontends, OPT_STR, "civetweb port=7480") // rgw front ends OPTION(rgw_user_quota_bucket_sync_interval, OPT_INT, 180) // time period for accumulating modified buckets before syncing stats OPTION(rgw_user_quota_sync_interval, OPT_INT, 3600 * 24) // time period for accumulating modified buckets before syncing entire user stats diff --git a/src/rgw/rgw_main.cc b/src/rgw/rgw_main.cc index 01ef5556c221..f018faba8d62 100644 --- a/src/rgw/rgw_main.cc +++ b/src/rgw/rgw_main.cc @@ -232,7 +232,7 @@ int main(int argc, const char **argv) multimap fe_map; list configs; if (frontends.empty()) { - frontends.push_back("fastcgi"); + frontends.push_back("civetweb"); } for (list::iterator iter = frontends.begin(); iter != frontends.end(); ++iter) { string& f = *iter; -- 2.47.3