我希望能够在“website.com”,“staging.website.com”上使用Courier,并在我的开发机器上本地使用。我很难找到关于如何设置它的好文档。我是否需要在“staging.website.com”以及“website.com”上安装Umbraco(如果是这样,我该怎么做?),或者只安装“website.com”?如何从我的开发机器中使用Courier - 它通常使用Visual Studio通过本地IIS托管,因此URL通常与localhost:portX一致。 Courier的许可证不需要具有相同的URL,而不是localhost吗?
答案 0 :(得分:1)
转到Config文件夹中的courier.config并在Repositories标记
中添加以下内容<repository name="Name of repo" alias="repo1" type="CourierWebserviceRepositoryProvider" visible="true">
<url>http://yourOtherWebsiteDomain.local</url>
<user>0</user>
</repository>
或者如果您需要设置凭据
<repository name="Name of repo" alias="repo1" type="CourierWebserviceRepositoryProvider" visible="true">
<url>http://yourOtherWebsiteDomain.local</url>
<login>admin</login>
<password>1234</password>
<passwordEncoding>Hashed||Clean</passwordEncoding>
</repository>