Deploy a WordPress Blog using Bitnami


Update
It seems that the linux .run file we were using in this article below is no longer provided by Bitnami. Sad...

WordPress usually requires a LAMP(Linux, Apache, MySQL, PHP) or LNMP environment, which is complicated to deploy and migrate. Bitnami provides an easier way to accomplish the jobs above.

Install Nextcloud Server using snapcraft with Nginx reverse proxy and HTTPS enabled

Snap provides an approach to install Nextcloud easy and clean.

Prepare a domain name resolved to the IP address of your server.

#Debian\Ubuntu: 

#As super user:

apt install snapd

snap install nextcloud

#Enter your domain into browser and you'll see the welcome page, opreate as instruction.

nextcloud.enable-https lets-encrypt

#Operate as instruction.

#Done.

To set nextcloud port different than default:

Jellyfin Video Server Installation


Update: Now Jellyfin has provided a BASH script for APT user: https://jellyfin.org/docs/general/installation/linux/#debuntu-debian-ubuntu-and-derivatives-using-apt


Overall it's quite straightforward, especially when compared with installing the LAMP environment or WordPress, thanks to the APT package manager.

For the Ubuntu server, refer: https://jellyfin.org/docs/general/installation/linux#ubuntu

sudo apt install apt-transport-https

sudo add-apt-repository universe

curl -fsSL https://repo.jellyfin.org/ubuntu/jellyfin_team.gpg.key | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/debian-jellyfin.gpg

echo "deb [arch=$( dpkg --print-architecture )] https://repo.jellyfin.org/ubuntu $( lsb_release -c -s ) main" | sudo tee /etc/apt/sources.list.d/jellyfin.list

sudo apt update

sudo apt install jellyfin

Done.