-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding hindi tanslation to document site
- Loading branch information
1 parent
1513799
commit 2447432
Showing
3 changed files
with
102 additions
and
0 deletions.
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
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,47 @@ | ||
--- | ||
# SPDX-FileCopyrightText: 2024 KindSpells Labs S.L. | ||
# | ||
# SPDX-License-Identifier: MIT | ||
title: शुरुआत करना | ||
description: अपनी आस्ट्रो वेबसाइटों को आस्ट्रो-शील्ड के साथ सुरक्षित करना शुरू करें। | ||
--- | ||
|
||
## परिचय | ||
|
||
आस्ट्रो-शील्ड आपको अपनी आस्ट्रो वेबसाइटों की सुरक्षा में सुधार करने में मदद करेगा, | ||
जो आपको सुरक्षा के व्यापक सर्वोत्तम अभ्यासों को लागू करने की अनुमति देता है, जैसे: | ||
|
||
- [सबरिसोर्स इंटेग्रिटी](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) | ||
- [कंटेंट सिक्योरिटी पॉलिसी](https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP) | ||
|
||
## कैसे इंस्टॉल करें | ||
|
||
import { Code, Tabs, TabItem } from "@astrojs/starlight/components"; | ||
|
||
इसे इंस्टॉल करने के लिए, अपने टर्मिनल में निम्नलिखित कमांड चलाएँ: | ||
|
||
<Tabs> | ||
<TabItem label="npm"> | ||
```bash npm install --save-dev @kindspells/astro-shield ``` | ||
</TabItem> | ||
<TabItem label="pnpm"> | ||
```bash pnpm add --save-dev @kindspells/astro-shield ``` | ||
</TabItem> | ||
<TabItem label="yarn"> | ||
```bash yarn add --dev @kindspells/astro-shield ``` | ||
</TabItem> | ||
</Tabs> | ||
|
||
## एकीकरण सक्रिय करना | ||
|
||
अपनी `astro.config.mjs` कॉन्फ़िगरेशन फ़ाइल में, आस्ट्रो-शील्ड को आयात करें और | ||
इसे सूची में जोड़ें: | ||
|
||
```js | ||
import { defineConfig } from "astro/config"; | ||
import { shield } from "@kindspells/astro-shield"; | ||
|
||
export default defineConfig({ | ||
integrations: [shield({})], | ||
}); | ||
``` |
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,43 @@ | ||
--- | ||
# SPDX-FileCopyrightText: 2024 KindSpells Labs S.L. | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
title: आस्ट्रो-शील्ड में आपका स्वागत है | ||
description: आस्ट्रो-शील्ड के साथ अपनी आस्ट्रो साइटों की सुरक्षा करें। | ||
template: splash | ||
hero: | ||
tagline: आस्ट्रो-शील्ड के साथ अपनी साइट की सुरक्षा शुरू करें! | ||
image: | ||
file: ../../../assets/astro-shield.webp | ||
actions: | ||
- text: शुरुआत करें | ||
link: /getting-started/ | ||
icon: right-arrow | ||
variant: primary | ||
- text: आस्ट्रो एकीकरण के बारे में जानें | ||
link: https://docs.astro.build/en/guides/integrations-guide/ | ||
icon: external | ||
--- | ||
|
||
import { Card, CardGrid } from "@astrojs/starlight/components"; | ||
|
||
## यह क्या करता है | ||
|
||
<CardGrid stagger> | ||
<Card title="सबरिसोर्स इंटेग्रिटी लागू करें" icon="pencil"> | ||
आस्ट्रो-शील्ड आपके लिए SRI हैश की गणना करने और स्क्रिप्ट और स्टाइल टैग पर | ||
`integrity` विशेषता सेट करने का ध्यान रखता है। | ||
</Card> | ||
<Card title="कंटेंट-सिक्योरिटी-पॉलिसी हेडर सेट करें" icon="seti:lock"> | ||
आस्ट्रो-शील्ड आपके लिए स्वचालित रूप से `Content-Security-Policy` हेडर सेट कर | ||
सकता है। | ||
</Card> | ||
<Card title="इंजेक्टेड स्क्रिप्ट को ब्लॉक करें" icon="close"> | ||
जब आस्ट्रो-शील्ड एक संदिग्ध स्क्रिप्ट का पता लगाता है (यानी, संभवतः एक | ||
हमलावर द्वारा इंजेक्ट की गई), तो यह उसे रेंडर किए गए HTML से हटा देगा। | ||
</Card> | ||
{/* <Card title="Prevent Prototype Pollution" icon="seti:gulp"> | ||
Blablablah... | ||
</Card> */} | ||
</CardGrid> |