更新时间:2023-11-09 GMT+08:00
设置托管配置
您可以通过setBucketWebsite设置桶的托管配置。
配置默认主页和错误页面
以下代码展示了如何配置默认主页和错误页面:
static OBSClient *client; NSString *endPoint = @"your-endpoint"; // 认证用的ak和sk硬编码到代码中或者明文存储都有很大的安全风险,建议在配置文件或者环境变量中密文存放,使用时解密,确保安全;本示例以ak和sk保存在环境变量中为例,运行本示例前请先在本地环境中设置环境变量AccessKeyID和SecretAccessKey。 // 您可以登录访问管理控制台获取访问密钥AK/SK,获取方式请参见https://support.huaweicloud.com/intl/zh-cn/usermanual-ca/ca_01_0003.html char* ak_env = getenv("AccessKeyID"); char* sk_env = getenv("SecretAccessKey"); NSString *AK = [NSString stringWithUTF8String:ak_env]; NSString *SK = [NSString stringWithUTF8String:sk_env]; // 初始化身份验证 OBSStaticCredentialProvider *credentialProvider = [[OBSStaticCredentialProvider alloc] initWithAccessKey:AK secretKey:SK]; //初始化服务配置 OBSServiceConfiguration *conf = [[OBSServiceConfiguration alloc] initWithURLString:endPoint credentialProvider:credentialProvider]; // 初始化client client = [[OBSClient alloc] initWithConfiguration:conf]; OBSWebsiteConfCustom* redirectCustom = [OBSWebsiteConfCustom new]; // 配置默认主页 OBSWebsiteConfCustomIndexDocument* indexDocument = [[OBSWebsiteConfCustomIndexDocument alloc]initWithSuffix:@"index.html"]; // 配置默认错误界面 OBSWebsiteConfCustomErrorDocument* errorDocument = [[OBSWebsiteConfCustomErrorDocument alloc]initWithKey:@"Error.html"]; OBSWebsiteConfCustomRoutingRule* redirectRule = [OBSWebsiteConfCustomRoutingRule new]; OBSWebsiteConfCustomCondition* condition = [OBSWebsiteConfCustomCondition new]; condition.keyPrefixEquals = @"docs/"; // condition.httpErrorCodeReturnedEquals = @"404"; // 配置重定向规则 OBSWebsiteConfCustomRedirect* redirect = [OBSWebsiteConfCustomRedirect new]; redirect.replaceKeyPrefixWith = @"documents/"; redirect.protocol = @"http"; redirect.hostName = @"URL"; // redirect.replaceKeyWith = @"error.html"; redirect.httpRedirectCode = @"301"; redirectRule.condition = condition; redirectRule.redirect = redirect; [redirectCustom.indexDocumentList addObject:indexDocument]; [redirectCustom.errorDocumentList addObject:errorDocument]; [redirectCustom.routingRulesList addObject:redirectRule]; OBSSetBucketWebsiteRequest *request = [[OBSSetBucketWebsiteRequest alloc]initWithBucketName:@"bucketname" configuration:redirectCustom]; [client setBucketWebsite:request completionHandler:^(OBSSetBucketWebsiteResponse *response, NSError *error){ NSLog(@"%@",response); }];
配置所有请求重定向
以下代码展示了如何配置所有请求重定向:
static OBSClient *client; NSString *endPoint = @"your-endpoint"; // 认证用的ak和sk硬编码到代码中或者明文存储都有很大的安全风险,建议在配置文件或者环境变量中密文存放,使用时解密,确保安全;本示例以ak和sk保存在环境变量中为例,运行本示例前请先在本地环境中设置环境变量AccessKeyID和SecretAccessKey。 // 您可以登录访问管理控制台获取访问密钥AK/SK,获取方式请参见https://support.huaweicloud.com/intl/zh-cn/usermanual-ca/ca_01_0003.html char* ak_env = getenv("AccessKeyID"); char* sk_env = getenv("SecretAccessKey"); NSString *AK = [NSString stringWithUTF8String:ak_env]; NSString *SK = [NSString stringWithUTF8String:sk_env]; // 初始化身份验证 OBSStaticCredentialProvider *credentialProvider = [[OBSStaticCredentialProvider alloc] initWithAccessKey:AK secretKey:SK]; //初始化服务配置 OBSServiceConfiguration *conf = [[OBSServiceConfiguration alloc] initWithURLString:endPoint credentialProvider:credentialProvider]; // 初始化client client = [[OBSClient alloc] initWithConfiguration:conf]; // 配置所有请求重定向 OBSWebsiteConfRedirectAll* redirectAll = [OBSWebsiteConfRedirectAll new]; redirectAll.hostName = @"URL"; OBSSetBucketWebsiteRequest *request = [[OBSSetBucketWebsiteRequest alloc]initWithBucketName:@"bucketname" configuration:redirectAll]; [client setBucketWebsite:request completionHandler:^(OBSSetBucketWebsiteResponse *response, NSError *error){ NSLog(@"%@",response); }];
父主题: 静态网站托管