-
Hi, Sorry if this is the wrong place to ask. So I managed to figure out how to use a VPS and I managed to get Snikket running despite still having no clue what a Docker does (I think it's some sort of sandbox? Or fancy zip file? No clue. 🤷♂️) but I'm trying to install xmpp-web on my VPS and I'm really not sure what commands to input. The instructions say and they also suggest a Is there a list of commands for total idiots to copy and paste into their SSH terminal to get xmpp-web working? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Hello @4wsa , you can find commands for Docker installation here: Docker can be seen as a sandbox, it allows to deploy easily app from "container" pulled from docker hub. You can also install a webserver and configure it but it needs more steps. |
Beta Was this translation helpful? Give feedback.
If port 80 of your host is already used, you can use another port with
-p 81:80
(<host port>:<container port>
)The open http://yourvps:81/
If you want to use https, I suggest using a proxy like haproxy or nginx with let's encrypt.