zrok/docs/guides/frontdoor.mdx

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2023-11-27 21:21:39 +01:00
---
title: zrok frontdoor
sidebar_label: frontdoor
sidebar_position: 20
---
import OsTabs from '@theme/OsTabs';
import Tabs from '@theme/Tabs';
import TabItem from '@theme/TabItem';
// import Details from '@theme/MDXComponents/Details';
import LinuxService from './_linux-service.mdx';
import ReservedDocker from './docker-share/_reserved_public_share.mdx';
2023-11-27 23:22:00 +01:00
**zrok frontdoor** provides a shielded entry point for your production website or service. This is useful if you want to expose it to the public internet, but not directly.
2023-11-27 21:21:39 +01:00
<OsTabs
queryString="os"
values={[
{ label: 'Linux', value: 'Linux', },
{ label: 'macOS', value: 'Mac OS', },
{ label: 'Windows', value: 'Windows', },
]}
>
<TabItem value="Linux">
On Linux, zrok frontdoor is implemented natively as a system service provided by the `zrok-share` DEB or RPM package.
If you'd prefer to run zrok in Docker, you can follow the same Docker instructions for [macOS](./?os=Mac+OS) or [Windows](./?os=Windows).
2023-11-27 21:21:39 +01:00
<LinuxService/>
</TabItem>
<TabItem value="Mac OS">
On macOS, zrok frontdoor is implemented as a Docker share project which reserves a public subdomain for your website or service.
<ReservedDocker/>
</TabItem>
<TabItem value="Windows">
On Windows, zrok frontdoor is implemented as a Docker share project which reserves a public subdomain for your website or service.
<ReservedDocker/>
</TabItem>
</OsTabs>