Camus running on Raspberry pi 4 under Ubuntu server 20.10 #25
Replies: 2 comments 5 replies
-
Hi @michelmimi, this is an excellent question. There seem to be two main issues to solve here:
To solve the first issue, you can run a reverse proxy like Nginx or Apache to forward traffic from a public port to Camus at To enable HTTPS, you'll need an SSL certificate. For a public server, you can use Certbot to get one from Let's Encrypt. For a non-public server (i.e. if you want to access Camus on your local network only), you will have to generate self-signed certificates. (Note that using a self-signed certificate will cause your browser to show a security warning, since the certificate isn't signed by a trusted third-party. To get rid of this warning, you'll have to go through some extra work to create your own certificate authority (CA), use it to sign your server certificate, then add the public CA certificate to any web browser that needs to access your Camus server.) Let me know if this helps, and if not I can try to give some more tips or point you to additional resources. P.s. If anyone else reading this has struggled or succeeded with setting up a Camus server on their local network, feel free to share feedback or tips! |
Beta Was this translation helpful? Give feedback.
-
I tried setting this up myself and wrote a tutorial: How to deploy Camus on Raspberry Pi with Ubuntu Server. Comments appreciated :) cc @michelmimi |
Beta Was this translation helpful? Give feedback.
-
Camus is quite easy to use, however, I encounter some difficulties with its setup on Ubuntu server 20.10 running on a Raspberry pi 4.
Installation with the command line: $ sudo snap install camus is a breeze.
Creating the room with the request: localhost:5000 is straightforward
But how do other clients connect to the same room from their browser? Some attempts on the same network segment were unsuccessful. I probably missed something in the setup. Why isn't it possible to create the room remotely with the following command: <camus_server_IP>:5000 ?
Beta Was this translation helpful? Give feedback.
All reactions