jarbus
jarbus
Hi Akshay, love this project. Super simple feature request: A way to print habit info to stdout in a way that tools like gnuplot could easily interact with. Would be...
Would it be possible to easily edit a previous day's habits? If I'm AFK in the evening or forget to update dijo until the next day I have to go...
> > Would it be possible to easily edit a previous day's habits? If I'm AFK in the evening or forget to update dijo until the next day I have...
Also experiencing these issues, specifically the un-indenting of lines ending in `:`
Same issue with base 15 2021, don't have openrazer installed. Seems to be an issue with the daemon ``` [I] ➜ sudo systemctl status razerdaemon.service × razerdaemon.service - Razer laptop...
The full docker-compose: ```yaml version: '3' services: # Frontend web: image: jitsi/web:latest restart: 'always' ports: - '127.0.0.1:8000:80' - '127.0.0.1:8443:443' volumes: - ${CONFIG}/web:/config:Z - ${CONFIG}/web/crontabs:/var/spool/cron/crontabs:Z - ${CONFIG}/transcripts:/usr/share/jitsi-meet/transcripts:Z environment: - AMPLITUDE_ID -...
Looks like it, you hit the nail on the head. My log is filled with these errors: ``` 2022-02-22T23:33:04.933Z [modules/RTC/BridgeChannel.js] : Channel closed: 1006 2022-02-22T23:33:21.488Z [modules/RTC/BridgeChannel.js] : Bridge Channel send:...
I'm seeing lots of mention of [port-forwarding UDP instead of TCP](https://community.jitsi.org/t/bridge-channel-send-no-opened-channel/18765/26?page=2), but I'm using a reverse proxy. If I'm doing reverse proxy behind a NAT, what should my NGINX config...
Here's my nginx config: /etc/nginx/conf.d/jitsi.conf ``` server { listen 443 ssl; server_name meet.domain.net; location / { proxy_pass http://127.0.0.1:8000; } ssl_certificate /etc/letsencrypt/live/meet.domain.net/fullchain.pem; # managed by Certbot ssl_certificate_key /etc/letsencrypt/live/meet.domain.net/privkey.pem; # managed by...
@bgrozev I'm following [the official guide](https://jitsi.github.io/handbook/docs/devops-guide/devops-guide-docker#running-behind-a-reverse-proxy), just switching from 8443 to 8000 since I'm behind a reverse proxy. In the docs I don't see anything about port 9090