text tweaks
This commit is contained in:
parent
73c1bdc813
commit
e413c794f0
@ -3,7 +3,7 @@
|
|||||||
[](https://heroku.com/deploy)
|
[](https://heroku.com/deploy)
|
||||||
[](<https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fboxyhq%2Fmock-saml&env=APP_URL,ENTITY_ID,PUBLIC_KEY,PRIVATE_KEY,NEXT_PUBLIC_GTM_ID&envDescription=APP_URL%20(Usually%20https%3A%2F%2F%3Cproject-name%3E.vercel.app)%20can%20be%20set%20after%20deployment%20from%20the%20project%20dashboard.%20Set%20to%20''%20if%20not%20applicable.&envLink=https%3A%2F%2Fgithub.com%2Fboxyhq%2Fmock-saml%2Fblob%2Fmain%2F.env.example&project-name=mock-saml>)
|
[](<https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fboxyhq%2Fmock-saml&env=APP_URL,ENTITY_ID,PUBLIC_KEY,PRIVATE_KEY,NEXT_PUBLIC_GTM_ID&envDescription=APP_URL%20(Usually%20https%3A%2F%2F%3Cproject-name%3E.vercel.app)%20can%20be%20set%20after%20deployment%20from%20the%20project%20dashboard.%20Set%20to%20''%20if%20not%20applicable.&envLink=https%3A%2F%2Fgithub.com%2Fboxyhq%2Fmock-saml%2Fblob%2Fmain%2F.env.example&project-name=mock-saml>)
|
||||||
|
|
||||||
Mock SAML is a SAML 2.0 IdP for development and testing the SAML SSO integration.
|
Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.
|
||||||
|
|
||||||
Try [Mock SAML](https://mocksaml.com/), our free hosted service.
|
Try [Mock SAML](https://mocksaml.com/), our free hosted service.
|
||||||
|
|
||||||
|
|||||||
14
app.json
14
app.json
@ -1,9 +1,17 @@
|
|||||||
{
|
{
|
||||||
"name": "Mock SAML",
|
"name": "Mock SAML",
|
||||||
"description": "Mock SAML is a SAML 2.0 IdP for development and testing the SAML SSO integration.",
|
"description": "Mock SAML is a free SAML 2.0 Identity Provider for testing SAML SSO integrations.",
|
||||||
"repository": "https://github.com/boxyhq/mock-saml",
|
"repository": "https://github.com/boxyhq/mock-saml",
|
||||||
"logo": "https://boxyhq.com/img/logo.png",
|
"logo": "https://boxyhq.com/img/logo.png",
|
||||||
"keywords": ["saml", "saml2", "saml-idp", "mock-saml-idp", "test-saml", "saml-testing", "fake-saml-idp"],
|
"keywords": [
|
||||||
|
"saml",
|
||||||
|
"saml2",
|
||||||
|
"saml-idp",
|
||||||
|
"mock-saml-idp",
|
||||||
|
"test-saml",
|
||||||
|
"saml-testing",
|
||||||
|
"fake-saml-idp"
|
||||||
|
],
|
||||||
"env": {
|
"env": {
|
||||||
"APP_URL": {
|
"APP_URL": {
|
||||||
"description": "Public root URL of the Mock SAML installation. Replace <HEROKU_APP_NAME> with 'App name' from above.",
|
"description": "Public root URL of the Mock SAML installation. Replace <HEROKU_APP_NAME> with 'App name' from above.",
|
||||||
@ -25,4 +33,4 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"success_url": "/"
|
"success_url": "/"
|
||||||
}
|
}
|
||||||
@ -8,7 +8,7 @@ type LayoutProps = {
|
|||||||
|
|
||||||
export default function Layout({ children }: LayoutProps) {
|
export default function Layout({ children }: LayoutProps) {
|
||||||
const title = 'Mock SAML - A free SAML 2.0 Identity Provider for testing SAML SSO integrations.';
|
const title = 'Mock SAML - A free SAML 2.0 Identity Provider for testing SAML SSO integrations.';
|
||||||
const description = 'A free SAML 2.0 Identity Provider for development and testing SAML SSO integrations.';
|
const description = 'A free SAML 2.0 Identity Provider for testing SAML SSO integrations.';
|
||||||
const website = 'https://mocksaml.com';
|
const website = 'https://mocksaml.com';
|
||||||
const ogImage = `${website}/mock-saml-preview-image.png`;
|
const ogImage = `${website}/mock-saml-preview-image.png`;
|
||||||
|
|
||||||
|
|||||||
@ -30,7 +30,7 @@ const Home: React.FC<{ metadata: IdPMetadata }> = ({ metadata }) => {
|
|||||||
Mock SAML Metadata
|
Mock SAML Metadata
|
||||||
</h1>
|
</h1>
|
||||||
<p className='mx-auto text-lg font-medium leading-relaxed lg:w-2/3'>
|
<p className='mx-auto text-lg font-medium leading-relaxed lg:w-2/3'>
|
||||||
A mock SAML 2.0 Identity Provider for development and testing SAML SSO integrations.
|
A free SAML 2.0 Identity Provider for testing SAML SSO integrations.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<b>Please do not use this in production.</b>
|
<b>Please do not use this in production.</b>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user