Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
danielreyes61D

danielreyes61

@danielreyes61
About
Posts
42
Topics
7
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    @girish or leave autoplay and add playsinline attribute and see if it works then.

    Enable Video Autoplay
    Video elements that include <video autoplay> play automatically when the video loads in Safari on macOS and iOS, only if those elements also include the playsinline attribute.

    XBackBone

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @nebulon what is ice handling?

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @jdaviescoates ok no worries. thanks for trying!! I'm not too sure either. All good though. Pretty sure the issue is with my host. May try some other things locally to test to be sure. Thanks!

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @nebulon ok I see them now, thank you. It must be an issue with my host then. Oracle Cloud Free Tier.

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @jdaviescoates tried to join and send message, it says Messages failed to send, do i need to be federated or anything?

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @jdaviescoates sure, trying now!

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @jdaviescoates interesting. I wonder if it's working for others now? I feel like i've tried everything.

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @jdaviescoates it works fine when both parties are on the same network.

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    @nebulon ok I see the turn server running in services tab but how do I see what ports are opened for the turn server? As it is right now, video and phone calling has not worked for anyone using cloudron so i am trying to get it to work here. My setup is a basic matrix install that is functioning fine for messages but does not work for video and voice calls.

    Matrix (Synapse/Element)

  • Why does matrix docker not open ports needed for turn server?
    danielreyes61D danielreyes61

    Why does matrix docker not open ports needed for turn server? I read that docker containers handle all port opening needed for functioning.

    iptables --numeric -L DOCKER
    

    I run this command and ports 3478, 5349, and UDP 50000:51000 needed for turn server to work when making video and audio calls in element are not open. When I open them in iptables and do iptables-save, it saves, but then on reboot, it is gone again. Making it very difficult for me to troubleshoot and get voice and video calls working.

    Matrix (Synapse/Element)

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    @girish after editing the files, I restarted the docker container too.

    XBackBone

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    @girish I wonder if editing the files after cache is generated is the trick?

    XBackBone

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    @girish oh I didn't clear the cache, I didn't fully understand that cache is created on demand, I looked in about 6 cache folders for the autoplay tag and removed it and it worked. I removed it from the audio only element and the video element as well, so to summarize: removed in twig and in cache. Did you confirm in chrome developer tools that the tag was removed? It's late in my shift and I'm getting sleepy so I'm trying to be clear. I usually skip steps when I'm writing once I get tired. Hope this makes sense.

    XBackBone

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    @girish I've confirmed, all that is needed is to remove the autoplay attribute from the video html tag and everything will work on iphones, I spun up a separate docker container on a fresh ubuntu vm and it is working after editing the template resource files that I listed above.

    XBackBone

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    @girish thank you

    XBackBone

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    Enable Video Autoplay
    Video elements that include <video autoplay> play automatically when the video loads in Safari on macOS and iOS, only if those elements also include the playsinline attribute. For more information on inline playback, see Enable Inline Video Playback.

    By default, autoplay executes only if the video doesn’t contain an audio track, or if the video element includes the muted attribute. Video playback pauses if the element gains an audio track, becomes unmuted without user interaction, or if the video is no longer onscreen (either by CSS or due to the user scrolling the page). The video doesn’t pause unless the user clicks or taps the video. This same expectation applies to WebRTC one-way video conferencing. For more information on WebRTC playback controls, see Add WebRTC Playback Controls.

    Autoplay video when the user expects it to autoplay in your website. For example, autoplay video in interfaces where video playback is the purpose of the webpage, like a video-sharing or hosting website.

    Source: https://developer.apple.com/documentation/webkit/delivering_video_content_for_safari/

    XBackBone

  • MP4 files not playing in Safari on Iphones
    danielreyes61D danielreyes61

    I believe the autoplay feature in the templates are causing the issue. I tried to edit the templates to disable / remove the autoplay feature but it says the system is read-only. Any ideas?

    code/resources/templates/upload/public.twig:91: <audio id="player" autoplay controls loop preload="auto">
    code/resources/templates/upload/public.twig💯 <video id="player" autoplay controls loop preload="auto">
    code/resources/cache/twig/6f/XXXXXXXXXXXXXXXXXXXXXXXX.php:284: <audio id="player" autoplay controls loop preload="auto">
    code/resources/cache/twig/6f/XXXXXXXXXXXXXXXXXXXXXXX.php:306: <video id="player" autoplay controls loop preload="auto">

    Find occurrences : grep -Rnw -e "autoplay"

    XBackBone

  • Nginx in front of cloudron install.
    danielreyes61D danielreyes61

    @murgero When I tried to setup 443, Nginx wanted a ssl certificate. Would I export the certificate that cloudron made and saved in firefox? After thinking about this more, I thought if I just had 80 and 443 set up that it would be the end of it and all would work well but now I am thinking I will actually still have to manually configure everything on my front end Nginx to match cloudron app's that I install. Is it not possible to have Cloudron manage all the proxy needed for those apps after I get 443 and 80 working in my Nginx?

    Support proxymanager

  • Nginx in front of cloudron install.
    danielreyes61D danielreyes61

    I am trying to get Nginx in front of my cloudron install working and having a hard time.
    Below is my current config /etc/nginx/conf.d/<site>.conf . I've removed my site name. I already have Nginx setup in front and it is successfully running and proxy_passing to my other websites. I need this to work because I plan to run a lot of websites from different virtual machines and containers from my single IP address and if cloudron remains in control in front of my ip address, than I cannot do that. I tried changing the below config to port 443 with no success. The install configures the "my" DNS record in cloudflare successfully and then gives me a blank page when it try's to resolve to https://my.<site>.net/setup.html. If I go to localhost in browser it will show me the setup screen for a brief second before failing. Please advise. If this doesn't work, I'll have to manually install everything I liked about cloudron in portainer myself. In theory this should work. Not sure where to investigate and if this current install sitting at the "setup" screen can even be saved or if I will have to completely reinstall the VM and cloudron and try again each time. Thank you for taking a look!

    • Dan
                              
    
    server {
        listen       80;
        server_name my.<site>.net <site>.net;
    
    location / {
        proxy_pass       https://192.168.1.139:80;
        proxy_http_version         1.1;
        proxy_read_timeout 300;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
        proxy_set_header Host $http_host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Real-PORT $remote_port;
               }
    }
    
    
    Support proxymanager

  • E-mail is not configured properly
    danielreyes61D danielreyes61

    Nevermind, I did not realize sendgrid setup was only for sending email, I see the other parts to setup for receiving email now. Please disregard.

    Support mail blacklist spam relay
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search