-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
DOCSUP-86796: [DOC] Добавить информацию про CSP (#78)
* DOCSUP-86796: [DOC] Добавить информацию про CSP * добавил страницу csp в toc.yaml и ссылку на csp в settings
- Loading branch information
Showing
3 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Управление Content Security Policy (CSP) | ||
|
||
CSP — это мощный инструмент для предотвращения различных атак, таких как XSS (межсайтовый скриптинг), и других угроз безопасности. | ||
|
||
Теперь вы можете настроить политики CSP с помощью добавления соответствующих настроек в .yfm файл. Это позволит вам детально управлять разрешенными источниками для различных типов ресурсов. | ||
|
||
#### Пример использования: | ||
|
||
```yaml | ||
resources: | ||
csp: | ||
- "frame-src": | ||
- "https://test.site" | ||
``` | ||
В данном примере мы разрешаем загружать фреймы только с <https://test.site>. Вы можете добавить свои собственные правила и источники, чтобы обеспечить соответствие безопасности именно для вашей документации. | ||
Подробнее про CSP: <https://content-security-policy.com/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters