Skip to content

Commit eabde47

Browse files
SeiyasuLinda Caputo
authored andcommitted
Update office-365-cdn.md (SharePoint#2626)
1 parent 7af9ae7 commit eabde47

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

docs/general-development/office-365-cdn.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -214,11 +214,11 @@ Set-SPOTenantCdnEnabled -CdnType Public -Enable $false
214214
### Set up and configure the Office 365 CDN using the Office 365 CLI
215215

216216
> [!NOTE]
217-
> Before you can manage site collection app catalogs in your tenant, ensure that you have installed the [Office 365 CLI](https://aka.ms/o365cli). Next, connect to your SharePoint Online tenant using the [spo connect](https://sharepoint.github.io/office365-cli/cmd/spo/connect/) command.
217+
> Before you can manage site collection app catalogs in your tenant, ensure that you have installed the [Office 365 CLI](https://aka.ms/o365cli). Next, connect to your SharePoint Online tenant using the [spo connect](https://pnp.github.io/office365-cli/cmd/spo/connect/) command.
218218
219219
#### Enable Office 365 CDN
220220

221-
You can manage the state of the Office 365 CDN in your tenant using the [spo cdn set](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-set/) command.
221+
You can manage the state of the Office 365 CDN in your tenant using the [spo cdn set](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-set/) command.
222222

223223
To enable the Office 365 Public CDN in your tenant execute:
224224

@@ -234,7 +234,7 @@ spo cdn set --type Private --enabled true
234234

235235
#### View the current status of the Office 365 CDN
236236

237-
To check, if the particular type of Office 365 CDN is enabled or disabled, use the [spo cdn get](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-get/) command.
237+
To check, if the particular type of Office 365 CDN is enabled or disabled, use the [spo cdn get](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-get/) command.
238238

239239
To check if the Office 365 Public CDN is enabled, execute:
240240

@@ -255,7 +255,7 @@ spo cdn origin list --type Public
255255
> [!NOTE]
256256
> You should never place resources that are considered sensitive to your organization in a SharePoint Document library configured as a Public CDN origin
257257
258-
Use the [spo cdn origin add](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-origin-add/) command to define a CDN origin. You can define multiple origins. The origin is a URL that points to a SharePoint library or folder that contains the assets that you want to be hosted by the CDN.
258+
Use the [spo cdn origin add](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-origin-add/) command to define a CDN origin. You can define multiple origins. The origin is a URL that points to a SharePoint library or folder that contains the assets that you want to be hosted by the CDN.
259259

260260
```sh
261261
spo cdn origin add --type [Public | Private] --origin <path>
@@ -276,11 +276,11 @@ spo cdn origin add --type Private --origin sites/site1/siteassets
276276
```
277277

278278
> [!NOTE]
279-
> After adding a CDN origin, it might take up to 15 minutes for you to be able to retrieve files via the CDN service. You can verify if the particular origin has already been enabled using the [spo cdn origin list](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-origin-list/) command.
279+
> After adding a CDN origin, it might take up to 15 minutes for you to be able to retrieve files via the CDN service. You can verify if the particular origin has already been enabled using the [spo cdn origin list](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-origin-list/) command.
280280
281281
#### Remove Office 365 CDN origin
282282

283-
Use the [spo cdn origin remove](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-origin-remove/) command to remove a CDN origin for the specified CDN type.
283+
Use the [spo cdn origin remove](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-origin-remove/) command to remove a CDN origin for the specified CDN type.
284284

285285
To remove an origin from the Public CDN configuration, execute:
286286

@@ -297,10 +297,10 @@ It's not possible to modify an existing CDN origin. Instead, you should remove t
297297

298298
#### Change the types of files to include in Office 365 CDN
299299

300-
By default, the following file types are included in the CDN: _.css, .eot, .gif, .ico, .jpeg, .jpg, .js, .map, .png, .svg, .ttf, and .woff_. If you need to include additional file types in the CDN, you can change the CDN configuration using the [spo cdn policy set](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-policy-set/) command.
300+
By default, the following file types are included in the CDN: _.css, .eot, .gif, .ico, .jpeg, .jpg, .js, .map, .png, .svg, .ttf, and .woff_. If you need to include additional file types in the CDN, you can change the CDN configuration using the [spo cdn policy set](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-policy-set/) command.
301301

302302
> [!NOTE]
303-
> When changing the list of file types, you overwrite the currently defined list. If you want to include additional file types, first use the [spo cdn policy list](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-origin-list/) command to find out which file types are currently configured.
303+
> When changing the list of file types, you overwrite the currently defined list. If you want to include additional file types, first use the [spo cdn policy list](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-origin-list/) command to find out which file types are currently configured.
304304
305305
To add the _JSON_ file type to the default list of file types included in the Public CDN, execute:
306306

@@ -310,10 +310,10 @@ spo cdn policy set --type Public --policy IncludeFileExtensions --value "CSS,EOT
310310

311311
#### Change the list of site classifications you want to exclude from the Office 365 CDN
312312

313-
Use the [spo cdn policy set](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-policy-set/) command to exclude site classifications that you do not want to make available over the CDN. By default, no site classifications are excluded.
313+
Use the [spo cdn policy set](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-policy-set/) command to exclude site classifications that you do not want to make available over the CDN. By default, no site classifications are excluded.
314314

315315
> [!NOTE]
316-
> When changing the list of excluded site classifications, you overwrite the currently defined list. If you want to exclude additional classifications, first use the [spo cdn policy list](https://sharepoint.github.io/office365-cli/cmd/spo/cdn/cdn-policy-list/) command to find out which classifications are currently configured.
316+
> When changing the list of excluded site classifications, you overwrite the currently defined list. If you want to exclude additional classifications, first use the [spo cdn policy list](https://pnp.github.io/office365-cli/cmd/spo/cdn/cdn-policy-list/) command to find out which classifications are currently configured.
317317
318318
To exclude sites classified as _HBI_ from the Public CDN, execute
319319

0 commit comments

Comments
 (0)