Øyvind Saltvik

Results 187 comments of Øyvind Saltvik

https://razzlejs.org/deployment-options/plesk https://www.ionos.com/digitalguide/websites/web-development/nodejs-for-a-website-with-apache-on-ubuntu/

In summary, to run a Razzle app with Apache using a reverse proxy, you need to: Install the mod_proxy module for Apache. Build your Razzle app and copy the build...

```apache2 ServerName example.com ServerAlias www.example.com # Serve the public directory of the Razzle app Alias "/public" "/var/www/my-razzle-app/build/public" Options Indexes FollowSymLinks AllowOverride None Require all granted # Proxy requests to Razzle...

Changed ```sh ./busybox echo "Pivoting root..." ./busybox mount --make-rprivate / ./busybox pivot_root . old_root ./busybox echo "Chrooting and running init..." ``` to ```sh ./busybox echo "Pivoting root..." ./busybox mount --make-rprivate...

```sh cd / sudo bash rm -rf takeover rm systemrescue.iso wget https://downloads.sourceforge.net/project/systemrescuecd/sysresccd-x86/11.01/systemrescue-11.01-amd64.iso -O systemrescue.iso mount systemrescue.iso /mnt/ unsquashfs -f -d takeover/ /mnt/sysresccd/x86_64/airootfs.sfs umount /mnt rm systemrescue.iso wget https://raw.githubusercontent.com/fivethreeo/takeover.sh/master/fakeinit.c -O takeover/fakeinit.c...

How far I got ```sh cd / sudo bash rm -rf takeover rm systemrescue.iso wget https://downloads.sourceforge.net/project/systemrescuecd/sysresccd-x86/11.01/systemrescue-11.01-amd64.iso -O systemrescue.iso mount systemrescue.iso /mnt/ unsquashfs -f -d takeover/ /mnt/sysresccd/x86_64/airootfs.sfs umount /mnt rm systemrescue.iso...