# tuna and Open Server Panel

## Step 1. Download the client

Instructions are available on the [installation page](https://tuna.am/en/docs/guides/install.md).

## Step 2. Start the OSPanel server

Installation instructions can be found in the [official documentation](https://ospanel.io/docs/#ustanovka).

## Step 3. Run tuna

OSPanel uses port `80` by default to access your web project:

```bash
tuna http 80

```

For correct request routing, passing the `Host` header may be necessary, for example:

```bash
tuna http --request-header="host:tuna.am" 80

```

Community comment from Telegram:

If using NGINX and HTTP to HTTPS redirect is configured, you need to specify the scheme, for example:

```bash
tuna http --request-header="host:tuna.am" https://127.0.0.1

```

Aleksandr G.
