Giter Club home page Giter Club logo

Comments (10)

Fwuk avatar Fwuk commented on June 11, 2024

does your docker compose look like this? "env_file: .env"

voice:
image: revoltchat/vortex:0.3.0-alpha.1
env_file: .env
ports:
- "8080:8080"
- "10001-11000:10001-11000/tcp"
- "10001-11000:10001-11000/udp"
restart: always

from vortex.

Cocam123 avatar Cocam123 commented on June 11, 2024

I just saw that the wormhole was not present in the docker-compose. So I will put what you sent and try

from vortex.

Cocam123 avatar Cocam123 commented on June 11, 2024

It seems that it still doesn't work
Capture

from vortex.

SivertGullbergHansen avatar SivertGullbergHansen commented on June 11, 2024

Share your .env file and hide your token and replace any IPs with text explaining where it leads to so we can inspect if it is setup correct

from vortex.

Cocam123 avatar Cocam123 commented on June 11, 2024

Share your .env file and hide your token and replace any IPs with text explaining where it leads to so we can inspect if it is setup correct

Hello, here is my .env file
https://drive.google.com/file/d/137N_YRVk56Id9ASNhY0gkja1dfsY00sM/view?usp=sharing

from vortex.

SivertGullbergHansen avatar SivertGullbergHansen commented on June 11, 2024

Share your .env file and hide your token and replace any IPs with text explaining where it leads to so we can inspect if it is setup correct

Hello, here is my .env file https://drive.google.com/file/d/137N_YRVk56Id9ASNhY0gkja1dfsY00sM/view?usp=sharing

Just copy & paste it here in the comments, I will not download anything.

To make matters clear, your .env file must be setup correctly. Here's an example of how our .env-file is setup in a working Vortex-server:

HTTP_HOST=0.0.0.0:8080
WS_URL=wss://OUR_PUBLIC_IP_GOES_HERE
MANAGE_TOKEN=CREATE_A_TOKEN_HERE
RTC_MIN_PORT=1000
RTC_MAX_PORT=1100
DISABLE_RTP=0
RTC_IPS=0.0.0.0,OUR_PUBLIC_IP_GOES_HERE

from vortex.

Cocam123 avatar Cocam123 commented on June 11, 2024

Share your .env file and hide your token and replace any IPs with text explaining where it leads to so we can inspect if it is setup correct

Hello, here is my .env file https://drive.google.com/file/d/137N_YRVk56Id9ASNhY0gkja1dfsY00sM/view?usp=sharing

Just copy & paste it here in the comments, I will not download anything.

To make matters clear, your .env file must be setup correctly. Here's an example of how our .env-file is setup in a working Vortex-server:

HTTP_HOST=0.0.0.0:8080
WS_URL=wss://OUR_PUBLIC_IP_GOES_HERE
MANAGE_TOKEN=CREATE_A_TOKEN_HERE
RTC_MIN_PORT=1000
RTC_MAX_PORT=1100
DISABLE_RTP=0
RTC_IPS=0.0.0.0,OUR_PUBLIC_IP_GOES_HERE

Here's my configuration (in comments)

REVOLT_APP_URL=https://appurl.co.jp

# URL to where the API is publicly accessible
REVOLT_PUBLIC_URL=https://publicurl.co.jp
VITE_API_URL=https://viteapi.co.jp

# URL to where the WebSocket server is publicly accessible
REVOLT_EXTERNAL_WS_URL=wss://excernalwsurl.co.jp

# URL to where Autumn is publicly available
AUTUMN_PUBLIC_URL=https://autumn.co.jp

# URL to where January is publicly available
JANUARY_PUBLIC_URL=http://january.co.jp

# URL to where Vortex is publicly available
 VOSO_PUBLIC_URL=https://voso.revolt.chat

##
## hCaptcha Settings
##

# If you are sure that you don't want to use hCaptcha, set to 1.
REVOLT_UNSAFE_NO_CAPTCHA=1

# hCaptcha API key
# REVOLT_HCAPTCHA_KEY=0x0000000000000000000000000000000000000000

# hCaptcha site key
# REVOLT_HCAPTCHA_SITEKEY=10000000-ffff-ffff-ffff-000000000001


##
## Email Settings
##

# If you are sure that you don't want to use email verification, set to 1.
REVOLT_UNSAFE_NO_EMAIL=1

# SMTP host
 REVOLT_SMTP_HOST=stmp.co.jp

# SMTP username
 REVOLT_SMTP_USERNAME=username

# SMTP password
 REVOLT_SMTP_PASSWORD=password

# SMTP From header
 REVOLT_SMTP_FROM=email address


##
## Application Settings
##

# Whether to only allow users to sign up if they have an invite code
REVOLT_INVITE_ONLY=0

# Maximum number of people that can be in a group chat
REVOLT_MAX_GROUP_SIZE=150

# VAPID keys for push notifications
# Generate using this guide: https://gitlab.insrt.uk/revolt/delta/-/wikis/vapid
# --> Please replace these keys before going into production! <--
REVOLT_VAPID_PRIVATE_KEY=key

REVOLT_VAPID_PUBLIC_KEY=key


##
## Autumn configuration
##

# S3 Region
AUTUMN_S3_REGION=minio

# S3 Endpoint
AUTUMN_S3_ENDPOINT=http://minio:9000

# MinIO Root User
MINIO_ROOT_USER=minioautumn

# MinIO Root Password
MINIO_ROOT_PASSWORD=minioautumn

# AWS Access Key ID (auto-filled if present above)
# AWS_ACCESS_KEY_ID=minioautumn

# AWS Secret Key (auto-filled if present above)
# AWS_SECRET_ACCESS_KEY=minioautumn


##
## Vortex configuration
##
 HTTP_HOST=wss://0.0.0.0:8080 #directed to port 8080
 WS_URL=wss://0.0.0.0:8080 #also directed to port 8080 (I don't know if it's a mistake because I think this option is an option to listen to port 8080 that's why I put the same)
 RTC_MIN_PORT=10000 #min port
 RTC_MAX_PORT=11000 #max port
 DISABLE_RTP=0
 RTC_IPS=0.0.0.0,public ip```

from vortex.

Fwuk avatar Fwuk commented on June 11, 2024

ws_url should be the same as your voso public url. and im not sure if it matters but try removing all the spaces in front of the parameters

here is an example of my .env file

Vortex configuration

WS_URL=wss://voso.domain.net
RTC_IPS=0.0.0.0,PUBLICIP
RTC_MIN_PORT=10001
RTC_MAX_PORT=11000
MANAGE_TOKEN=TOKEN
VOSO_MANAGE_TOKEN=TOKEN
DISABLE_RTP=1

from vortex.

Cocam123 avatar Cocam123 commented on June 11, 2024

ws_url should be the same as your voso public url. and im not sure if it matters but try removing all the spaces in front of the parameters

here is an example of my .env file

Vortex configuration

WS_URL=wss://voso.domain.net RTC_IPS=0.0.0.0,PUBLICIP RTC_MIN_PORT=10001 RTC_MAX_PORT=11000 MANAGE_TOKEN=TOKEN VOSO_MANAGE_TOKEN=TOKEN DISABLE_RTP=1

Hello, it still doesn't work :/

from vortex.

insertish avatar insertish commented on June 11, 2024

In an effort to clean up the global issue tracker, I'm currently consolidating all issues regarding self-hosting Vortex into #23 (comment).

from vortex.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.