# V3.3.0 single node Fronted app

**URL:** https://openvidu.discourse.group/t/v3-3-0-single-node-fronted-app/5422
**Category:** Issues developing apps
**Created:** [September 11, 2025, 2:18pm UTC](https://openvidu.discourse.group/t/v3-3-0-single-node-fronted-app/5422 "2025-09-11T14:18:02Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![x3m4ikc](https://yyz2.discourse-cdn.com/free1/user_avatar/openvidu.discourse.group/x3m4ikc/32/2595_2.png) [@x3m4ikc](https://openvidu.discourse.group/u/x3m4ikc)
#### Post date: [September 11, 2025, 2:18pm UTC](https://openvidu.discourse.group/t/v3-3-0-single-node-fronted-app/5422/1 "2025-09-11T14:18:02Z")

</div>

Hello! I’m using OpenVidu Single Node. I got an issue with Frontend app. I want to replace the standart fronted app with my custom one, but I don’t understand how to make it. I’ll be glad any help)

---

<div class="post-metadata">

### Author: ![cruizba](https://yyz2.discourse-cdn.com/free1/user_avatar/openvidu.discourse.group/cruizba/32/18_2.png) [@cruizba](https://openvidu.discourse.group/u/cruizba)
#### Post date: [September 12, 2025, 12:48pm UTC](https://openvidu.discourse.group/t/v3-3-0-single-node-fronted-app/5422/2 "2025-09-12T12:48:16Z")

</div>

Hello @x3m4ikc. You have two options:

1. **Deploy on a different server**

To deploy on a different server, configure your application to point to the deployed server (like `wss://<domain-name>/` or `https://<domain-name>/` and use the configured `LIVEKIT_API_KEY` and `LIVEKIT_API_SECRET`.

1. **Deploy on the same server**

Replacing the frontend app is straightforward.

1. Open your `/opt/openvidu/config/openvidu.env` file and remove the `app` module. For example, if you have:

2. On the VM where OpenVidu is deployed, deploy your app on port 6080. The OpenVidu deployment will reverse proxy any request to `https://<domain>/` to your application on port 6080. The way you run and configure your app is up to you.

3. Disable the webhook of the default app or configure it to point to your app’s endpoint:

* * *

**Note** : If for some reason you want to deploy your app internally in a different port instead of 6080, you can change that port by changing the value of `DEFAULT_APP_INTERNAL_PORT` at `/opt/openvidu/config/openvidu.env`

* * *

I hope this clarifies the process. We should document this in a relevant section. Do you think this would clarify the process?

Best regards

---

<div class="post-metadata">

### Author: ![x3m4ikc](https://yyz2.discourse-cdn.com/free1/user_avatar/openvidu.discourse.group/x3m4ikc/32/2595_2.png) [@x3m4ikc](https://openvidu.discourse.group/u/x3m4ikc)
#### Post date: [September 15, 2025, 9:52am UTC](https://openvidu.discourse.group/t/v3-3-0-single-node-fronted-app/5422/3 "2025-09-15T09:52:56Z")

</div>

It’s working but I canged a bit livekit.yaml and openvidu.env and it’s working. Thanks a lot!
