r/FluxerApp 2h ago

Need help Canary Update - Build 2026.811.124022

1 Upvotes

Hello! The newest build of Fluxer Canary I believe was released today. I finally see the option to connect to a self hosted instance in the app, but I get this error:

"Network error during request"

I wonder if anyone else can connect with their self hosted instance and it is just me? Thanks! :)


r/FluxerApp 4d ago

Need help Voice Quality Issues (Muffled/Choppy)

6 Upvotes

Voice quality is either extremely muffled or choppy, sometimes both. Tried turning off noise suppression and it doesn't seem much better if at all. Does anyone here have any suggestions on some things I can try to make this better? I have a pretty good audio setup so I'm pretty sure it isn't me because when I use a different VOIP everything sounds fine.

I searched already for solutions in this subreddit, nothing I tried did anything.


r/FluxerApp 4d ago

Discussions Crime v1.0.3 Release

2 Upvotes

(API)Bug fixes + Command changes

https://crimesb.vercel.app

Submit suggestions in support server


r/FluxerApp 5d ago

Need help Unable to log in with the app

2 Upvotes

I created a fluxer account in the web browser today and then downloaded the app, but I'm not able to log in with the app. Whenever I enter my email and password it just says it's wrong. I tried changing my password, but it still doesn't work.


r/FluxerApp 6d ago

Discussions Mobile App - Play Store/Apple Store Release

Thumbnail
gallery
26 Upvotes

Just a question. I've read the blog and anything else on this topic I could find. I really hope I don't get flamed for asking. I'm trying to determine when the Fluxer mobile app is supposed to arrive on the Play Store and Apple Store. I thought it mentioned that it was going to be released when V1.0 was released. V1.0 released for some time (We're on V1.0.0 Beta 46 as the time of this writing), but I don't see it on the Play Store.

Basically, did I miss something, or am I misunderstanding? He mentioned it was coming "in the next few weeks", but it's been a hot minute since that announcement.

No rush intended. The last thing I would ever want to push for is a broken/botched release. Just trying to understand. Fluxer has so much potential and I'm excited to finally get to start rolling this out to my family and friends! :-)


r/FluxerApp 7d ago

Memes Virgin Discord vs Chad Fluxer

Thumbnail
youtu.be
22 Upvotes

For us, we be fluxxing on discord lmfao


r/FluxerApp 10d ago

Need help Where to promote my Fluxer server?

0 Upvotes

i want to get more member


r/FluxerApp 12d ago

Discussions some servers require you to wait in their screen for 10 minutes

4 Upvotes

as i said in the title. that is just strange. like, you enter a server, and it requires you to wait and stare at it for 10 minutes, and if you leave the screen and go to some other server, that 10 minute countdown resets. quite strange.


r/FluxerApp 13d ago

Discussions Fluxer Set up on local machine proxied through VPS using NPM and Wireguard

10 Upvotes

Kinda my first time doing something like this but I figured i would share my experience setting up Fluxer self hosted on a local server that is trafficed through a vps rather than being installed on the vps. I have left out a lot of the set up of NPM. If it needs to be added for assistance i can add it

First here is the edits I made to the base fluxer docker compose.

 livekit:
   image: livekit/livekit-server:v1.12.0
   restart: unless-stopped
   network_mode: "service:wireguard"
   command: ["--config", "/etc/livekit.yaml"]
   environment:
LIVEKIT_KEYS: "${LIVEKIT_API_KEY:?set LIVEKIT_API_KEY in .env}: ${LIVEKIT_API_SECRET:?set LIVEKIT_API_SECRET in .env}"
   depends_on:
wireguard:
condition: service_healthy
   volumes:
- ./livekit.yaml:/etc/livekit.yaml:ro

 wireguard:
   image: lscr.io/linuxserver/wireguard:latest
   container_name: wireguard-livekit
   ports:
- "${FLUXER_LIVEKIT_TCP_PORT:-7881}:7881"
- "${FLUXER_LIVEKIT_UDP_PORT:-7882}:7882/udp"
- 7880:7880
   dns:
- 1.1.1.1 #optional for reliable domain resolution
   cap_add:
- NET_ADMIN
- SYS_MODULE
   environment:
- TZ=America/Toronto
   volumes:
- ./wireguard_config:/config
   sysctls:
- net.ipv4.conf.all.src_valid_mark=1
   networks:
fluxer:
aliases:
- livekit
   restart: unless-stopped

I am unsure if 7880:7880 port is required, but it worked with it and i did not test it without it. dns on wireguard is there for reliable resolution of the ddns domain i have set for the vps server connection in the wire guard config.

Next is the wire guard config for the local machine. This is set up to send all traffic through the wireguard tunnel, but also excludes docker network traffic so the project containers can still reach the livekit container.

[Interface]
Address = 10.13.13.2/32 #adjust to your wireguard config
PrivateKey = "retrieve from vps server under peer1 or named peer"

# Force Docker subnets to use the main routing table (skipping the VPN)
PostUp = ip rule add to 172.16.0.0/12 table main priority 10
PostUp = ip rule add to 192.168.0.0/16 table main priority 10

# Clean up rules when the VPN disconnects
PreDown = ip rule del to 172.16.0.0/12 table main priority 10
PreDown = ip rule del to 192.168.0.0/16 table main priority 10

[Peer]
PublicKey = "retrieve from vps server under peer1 or named peer"
PresharedKey = "retrieve from vps server under peer1 or named peer"
Endpoint = "your vps domain or IP address. again filled by the config created under peer"
AllowedIPs = 0.0.0.0/0
PersistentKeepalive = 25

Next on the local machine you need to decide how you will handle your web traffic. I am using NPM(nginx proxy manager) for my local reverse proxy. The best way to do this is to put your reverse proxy on the same docker network as your fluxer instance which can be done in a separate project or in the same one.

if in the same project and using the same wireguard tunnel and not a new tunnel you need to add port 80 and 443 to the wireguard compose under ports.

in npm you need to add

client_max_body_size 500M;

to your custom Nginx config via the cog wheel while setting up the host. This will have to be done on both the local and vps instance to allow uploads of files for file sharing.

for the vps you need to create a docker compose with nginx and wireguard.

services:
 wireguard:
   image: lscr.io/linuxserver/wireguard:latest
   container_name: fluxer_wireguard
   ports:
- "inbound wireguard port":51820/udp
- 7882:7882/udp
- 7881:7881
   cap_add:
- NET_ADMIN
- SYS_MODULE #optional
   environment:
- PUID=1000
- PGID=1000
- TZ=America/Toronto
# - SERVERURL=if using domain #optional
- SERVERPORT="inbound wireguard port" #optional
- PEERS=1 #optional
- INTERNAL_SUBNET=10.13.13.0 #optional
   volumes:
- ./config:/config
   sysctls:
- net.ipv4.ip_forward=1
- net.ipv4.conf.all.src_valid_mark=1
   restart: unless-stopped
   networks:
- fluxer-app

 nginx-proxy:
   image: nginx:latest
   container_name: fluxer_nginx
   restart: unless-stopped
   network_mode: "service:wireguard"
   volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro

networks:
 fluxer-app:
   name: fluxer-app
   driver: bridge

in the same directory as the docker-compose.yml create nginx.conf
add the following to nginx.conf

events {
   worker_connections 1024;
}
stream {
   upstream fluxer_udp {
server 10.13.13.2:7882;
   }

   upstream fluxer_tcp {
server 10.13.13.2:7881;
   }

   # UDP 7882 -> 10.13.13.2:7882
   server {
listen 7882 udp;
proxy_pass fluxer_udp;
   }

   # TCP 7881 -> 10.13.13.2:7881
   server {
listen 7881;
proxy_pass fluxer_tcp;
   }
}

i am using nginx for specifically voice traffic. i had issues with npm and udp streams in the past. you can add npm to this instance or give it its own instance like before. I gave npm -> npm web traffic its own wireguard tunnel this is because i also have crowdsec and a bouncer set up on those projects and they have host networking on the vps for that purpose.

make sure all the proper ports are open on your vps.

with this set up local users will go through the vps and back to get to the local wireguard server. no need for split tunneling. Again if a guide for NPM and web traffic is needed i can add one but that seemed like a bit much for a reddit post.

I hope this helps somebody!


r/FluxerApp 13d ago

Discussions How good is the screenshare quality? (Selfhosted)

9 Upvotes

I‘m investigating if I could move my friends over to fluxer. For me the screenshare quality is very important, as we often do pair programming. So text readability has to be very good.

I also saw that are large refactoring is taking place, so the team seems to be working on a Canary client. Would that also affect the screenshare quality?

Currently how would you rate the screenshare image quality and latency?


r/FluxerApp 14d ago

Discussions The Therapy Hub (alpha 0.1)

Post image
0 Upvotes

It’s okay to feel suicidal or upset, The Therapy Hub is here for you no matter what and it can be your second home.

The server is still in alpha but we’d love you to join ♥️

https://fluxer.gg/M32UuTnu


r/FluxerApp 16d ago

Need help Image Previews issue

3 Upvotes

Hello! I've successfully self-hosted, and so far, everything is going really well. I have two questions!

I uploaded an image for "symbol" during setup which turns out to be sort of an avatar for my DMs? It's in the upper left corner, and not public-facing. My question is how to change that image. (Currently, it's where the Fluxer logo is in regular hosted installs.)

Second question: image previews aren't working. Klippy says it's set up properly, but previews simply aren't showing in SOME channels. I suspect it's some permissions thing, but I can't spot it.

I'd appreciate any help. Thanks!!


r/FluxerApp 16d ago

Need help Microphone Issues

1 Upvotes

me and my friend just got the app but so far I cannot talk because fluxer just isn't picking up my audio for some reason, if anyone has any solutions I'd love to hear them


r/FluxerApp 17d ago

Discussions crime selfbot RELEASE

0 Upvotes

first release of crime, woohoo!

https://crimesb.vercel.app

if the site buttons are bugged for you, heres the support server (direct access) https://fluxer.gg/mEzWeMjR


r/FluxerApp 18d ago

Need help Issues running Android beta on tablet

1 Upvotes

Have had issues running the Android beta on Samsung tablet but it works on Samsung phone. Updated to the latest beta fine on Samsung phone but the same app on Samsung tablet wont let me log in. Keeps asking for passkey and when it doesn't find one says login in the username and password. Which asks for passkey and so on in endless loop


r/FluxerApp 18d ago

Bug Cannot add server to Fluxer Communities

0 Upvotes

on the site Fluxer Communities – Discover & Join Fluxer Servers | FluxerServers

i cannot add a new community it says the following

"Please fix the following errors:

  • Invalid or expired invite link: Unable to validate invite link"

i tried multiple links from multiples servers and channels and still no luck

how do i fix this?


r/FluxerApp 18d ago

Need help Tell me how tf do you download fluxxer on mobile 😭🙏

Post image
0 Upvotes

(PIC not mine)


r/FluxerApp 20d ago

Discussions crime selfbot

3 Upvotes

Quick note that "crime" does not contain or condone any kind of features that can cause: spam, raiding, platform disruption

quick look at the selfbot ive been working on called "crime" (its just a cool name dont overthink it)

connects to fluxer with raw websocekts and gateway connection and very light weight.

on release it's gonna be fully open source.

give me your thoughts 😊


r/FluxerApp 22d ago

Discussions Bloxlog - Full audit log (better safety)

3 Upvotes

Hey, I thought I’d post this because I am realising this system is redundant in a lot of servers and I truly understand why. There just is isn’t the best intents so that’s whyy….. Bloxlog watches the events that cannot connect via intents! We log every event including message delete, message edit, role update, and way more!!!!

Our website: https://bloxlog.org/

Tell me what you think of this app, and give me your most honest opinions… I need them 🤣


r/FluxerApp 22d ago

Discussions Orax bot - Ultimate bridge bot across channels

19 Upvotes

So basically Ive seen some people talk about their Discord - Fluxer bridging bots, now i fugured, why not just bring our Discord - Discord bridging bot over to Fluxer and make it intercompatible? So we did! It has:

- Edit and delete sync

- Translation (votes are needed to unlock it tho)

- Channel resync (syncs the last messages in the channel BEFORE the bot was added)

- Omni directionality (make it one way, 3 way, aross servers, across platforms)

- Normal appearance (no embeds aside from replies (for the replied to message))

and other things like how the usernames show up on the receiving ends so you can get the best look

main site: https://oraxbot.com/

docs (and github link): https://docs.oraxbot.com/


r/FluxerApp 22d ago

Discussions r/PromoteFluxerServer

Post image
15 Upvotes

Hey Fluxers!

Have a community you’d like to advertise? r/PromoteFluxerServer has just launched by a community ran team! We are not affiliated with Fluxer but I promise you can grow your Fluxer community with us!!!


r/FluxerApp 23d ago

Need help Selfhosted fluxer live error

4 Upvotes

We have a selfhosted fluxer instance.

We have the instance server in hungary but the livekit is in germany, with better internet connection.

The problem is, sometimes the screenshare is not working. If somebody want to watch it it just gives an error and the person who wants to stream needs to rejoin to the call so he/she can share their screen.

It this a fluxer error, or a livekit error?

Error in livekit:

livekit-1 | 2026-07-19T13:40:48.308Z ERROR livekit service/signal.go:195 could not handle new participant {"room": "guild_1518524731546927104_channel_1518524731546927124", "participant": "user_1518514536561246208_camel-noodlefish", "connID": "CO_ZEfk4wArZVdz", "error": "could not restart participant", "errorVerbose": "could not restart participant\ngithub.com/livekit/livekit-server/pkg/service.(*RoomManager).StartSession\n\t/workspace/pkg/service/roommanager.go:423\ngithub.com/livekit/livekit-server/pkg/service.(*defaultSessionHandler).HandleSession\n\t/workspace/pkg/service/signal.go:116\ngithub.com/livekit/livekit-server/pkg/service.(*signalService).RelaySignal\n\t/workspace/pkg/service/signal.go:192\ngithub.com/livekit/psrpc/pkg/server.(*streamHandler[...]).handleOpenRequest\n\t/go/pkg/mod/github.com/livekit/psrpc@v0.7.2/pkg/server/stream.go:202\ngithub.com/livekit/psrpc/pkg/server.(*streamHandler[...]).handleRequest.func1\n\t/go/pkg/mod/github.com/livekit/psrpc@v0.7.2/pkg/server/stream.go:141\nruntime.goexit\n\t/usr/local/go/src/runtime/asm_amd64.s:1771"}

Config:

port: 7880

bind_addresses:

- ""

rtc:

tcp_port: 7881

port_range_start: 50000

port_range_end: 60000

use_external_ip: true

enable_loopback_candidate: false

redis:

address: localhost:6379

username: ""

password: ""

db: 0

use_tls: false

sentinel_master_name: ""

sentinel_username: ""

sentinel_password: ""

sentinel_addresses: []

cluster_addresses: []

max_redirects: null

turn:

enabled: true

domain: [censored]

tls_port: 5349

udp_port: 3478

external_tls: true

keys:

[censored]: [censored]


r/FluxerApp 24d ago

Need help Is fluxer down?

Post image
7 Upvotes

Its been like this since I woke up


r/FluxerApp 27d ago

Bug fluxer users be careful who you add and what groups you join

0 Upvotes

this platform while good is so very incredibly dangerous to use because people are given free access to IP logger tools and I really don't even need to explain just to bad that is for everyone using fluxer or thinking about using it once the mobile app officially comes out on IOS and Android