Everything posted by Zachary.Griffin208
-
[SUPPORT] CONDUIT
How would I go about blocking or removing a user on the conduit server? I tried looking around but wasn't really able to find a clear answer that was specific to Conduit. Thanks!
-
[SUPPORT] CONDUIT
I tried this, but I must have typed something incorrectly. This did fix it, thanks!
-
[SUPPORT] CONDUIT
The latest update seemed to have broken it for me: thread 'main' panicked at src/main.rs:53:55: The CONDUIT_CONFIG env var needs to be set. Example: /etc/conduit.toml note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
-
[SUPPORT] CONDUIT
Okay, here is the solution for anyone else that might run into this: In Nginx Proxy Manager, go to "proxy hosts" and edit your proxy. Go to the advanced tab and paste this: location /.well-known/matrix/server { return 200 '{"m.server": "matrix.minnix.dev:443"}'; default_type application/json; add_header Access-Control-Allow-Origin *; } location /.well-known/matrix/client { return 200 '{"m.homeserver": {"base_url": "https://matrix.minnix.dev"}}'; default_type application/json; add_header Access-Control-Allow-Origin *; } Change "matrix.minix.dev" to your domain in both locations. Save. Found answer here: https://github.com/NginxProxyManager/nginx-proxy-manager/issues/1893#issuecomment-1054000169
-
[SUPPORT] CONDUIT
Okay. I'll look into getting that to work with NGINX Proxy Manager. Thanks for the help!
-
[SUPPORT] CONDUIT
I'm not using swag, but I am using NGINX Proxy Manager. Would it need to be swag specifically?
-
[SUPPORT] CONDUIT
Hey there, I was able to get everything installed and it seems to be working well. However I'm not able to sign into the server using certain apps on android. For example, when trying to sign in using Element on Android, I type in a Server URL and get an error "M_UNRECOGNIZED: Unrecognized request" and on my logs I get: WARN conduit: Not found: /.well-known/matrix/client This issues is only on some apps.I've tried Element, SchildiChat, and FluffyChat, and FluffyChat on android does work. However Element does successfully sign in on iOS, web, and Linux. Is there something I can do to fix this? Thanks =)