Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCSUP-86796: [DOC] Добавить информацию про CSP #78

Merged
merged 2 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions ru/guides/csp.md
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/>
3 changes: 2 additions & 1 deletion ru/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,6 @@
|| `analytics` | Конфигурация для модуля аналитки | `Object` | `undefined` ||
|| `analytics.gtm` | Настройки Google Tag Manager аналитики | `Object` | `undefined` ||
|| `analytics.gtm.id` | Идентификатор Google Tag Manager в формате GTM-* | `string` | `undefined` ||
|| `analytics.gtm.mode` | Тип уведомления перед отправкой событий `base` или `notification` | `string` | `base` ||
|| `analytics.gtm.mode` | Тип уведомления перед отправкой событий `base` или `notification` | `string` | `base` ||
|| `csp` | Управление [Content Security Policy](./guides/csp.md) (CSP) | `string` | - ||
|#
2 changes: 2 additions & 0 deletions ru/toc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ items:
href: guides/unarchive.md
- name: Source Docs
href: guides/source-docs.md
- name: Content Security Policy (CSP)
href: guides/csp.md
- name: Инструменты и библиотеки
labeled: true
items:
Expand Down
Loading