Product used: VPS 200 G10s iv
from 3.25€ / month | go to product >
This tutorial describes how to install Wirow on Ubuntu 22.04.
The time needed to follow this tutorial is approximately 10 - 20 minutes.
The tutorial was tested on Ubuntu 22.04 (July 2023).
The tutorial uses the example IP 123.123.123.123
.
This hostname needs to be replaced by the name of your own server when you perform the workflow described in this tutorial.
We will also use the subdomain conference.example.com
, please replace it with your own domain.
A VPS 200 is sufficient for this tutorial.
The server must already have the Ubuntu 22.04 Image from the (SCP)[https://servercontrolpanel.de/] installed.
A
.First you need to log in to your server via SSH. Then proceed as follows:
sudo -s
to get root privileges.Enter
.apt update -y && apt upgrade -y && apt remove -y nginx apache2 lighttpd && apt autoremove -y && apt install -y wget unzip zip
to update the server, remove any existing webservers and old packages and install required packages.Enter
once to continue.Enter
once to continue.exit
to exit the root shell.wget
, paste the link you copied in Step 4, and then press Enter
.unzip wirow.zip
to unzip the downloaded file.sudo /usr/sbin/setcap 'cap_net_bind_service=+ep' ./wirow
to allow Wirow to use port 80 and 443 (you will be asked for the root user password)../wirow -n conference.example.com -a PASSWORD
to start Wirow (replace conference.example.com
with your subdomain and PASSWORD
with a password of your choice).Ctrl+C
to stop Wirow in the terminal.We want to start Wirow automatically when the server starts.
sudo nano /etc/systemd/system/wirow.service
to create a new systemd service file.[Unit]
Description=Wirow - A free and open source web based video conferencing tool
Documentation=https://github.com/wirow-io/wirow-server
After=network.target
[Service]
Type=simple
User=[REPLACE_WITH_USERNAME]
WorkingDirectory=/home/[REPLACE_WITH_USERNAME]/
ExecStart=/home/[REPLACE_WITH_USERNAME]/wirow -n conference.example.com
Restart=on-failure
[Install]
WantedBy=multi-user.target
[REPLACE_WITH_USERNAME]
with the user under which you extracted the Wirow files in Step 5.2.conference.example.com
with your domain.Ctrl + X
and then Y
and then Enter
.sudo systemctl daemon-reload
to reload the systemd daemon.sudo systemctl enable wirow
to enable the service.sudo systemctl start wirow
to start the service.We need a firewall to protect our server from unwanted connections.
We will use ufw
(Uncomplicated Firewall) to set up the firewall, because it is easy to use and configure and is also pre-installed on Ubuntu.
ufw allow ssh
to allow SSH connections.ufw allow http
to allow HTTP connections.ufw allow https
to allow HTTPS connections.ufw enable
to enable the firewall.Y
and then Enter
to confirm.You have successfully installed Wirow and set it up to start on boot.
From now on, your Wirow instance will be available on your subdomain (e.g. https://conference.example.com
).
Thank you for using this tutorial!
Copyright (c) 2023 Konstantin Protzen
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
By making a contribution to this project, I certify that:
The contribution was created in whole or in part by me and I have the right to submit it under the license indicated in the file; or
The contribution is based upon previous work that, to the best of my knowledge, is covered under an appropriate license and I have the right under that license to submit that work with modifications, whether created in whole or in part by me, under the same license (unless I am permitted to submit under a different license), as indicated in the file; or
The contribution was provided directly to me by some other person who certified (a), (b) or (c) and I have not modified it.
I understand and agree that this project and the contribution are public and that a record of the contribution (including all personal information I submit with it, including my sign-off) is maintained indefinitely and may be redistributed consistent with this project or the license(s) involved.