]> git.apps.os.sepia.ceph.com Git - ceph-ci.git/commitdiff
rgw: remove fastcgi from default rgw frontends
authorCasey Bodley <cbodley@redhat.com>
Mon, 15 May 2017 22:08:07 +0000 (18:08 -0400)
committerCasey Bodley <cbodley@redhat.com>
Mon, 15 May 2017 22:08:07 +0000 (18:08 -0400)
Signed-off-by: Casey Bodley <cbodley@redhat.com>
src/common/config_opts.h
src/rgw/rgw_main.cc

index 405aeacf6d8f8d4ddf8c65189d9cd94d5a7124e0..b8ae97dbc22c074295cf4e8f2ca27007644089d1 100644 (file)
@@ -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
index 01ef5556c221cc5e617bd6caa204f23b83ccb379..f018faba8d62a1a7913941a05fb1cdd708f61258 100644 (file)
@@ -232,7 +232,7 @@ int main(int argc, const char **argv)
   multimap<string, RGWFrontendConfig *> fe_map;
   list<RGWFrontendConfig *> configs;
   if (frontends.empty()) {
-    frontends.push_back("fastcgi");
+    frontends.push_back("civetweb");
   }
   for (list<string>::iterator iter = frontends.begin(); iter != frontends.end(); ++iter) {
     string& f = *iter;