This procedure was tested on FreeBSD-CURRENT build from d8819d88af52.
- Enable linuxulator and install linux userland:
# sysrc linux_enable="YES" # service linux start # pkg install linux_base-c7
This procedure was tested on FreeBSD-CURRENT build from d8819d88af52.
# sysrc linux_enable="YES"
# service linux start
# pkg install linux_base-c7
| #/bin/sh | |
| # download from https://dl-cdn.alpinelinux.org/alpine/edge/releases/x86_64/netboot/ | |
| qemu-system-x86_64 \ | |
| -m 512 \ | |
| -kernel ~/Downloads/alpine-edge-x86_64/vmlinuz-lts \ | |
| -initrd ~/Downloads/alpine-edge-x86_64/initramfs-lts \ | |
| -append "console=ttyS0 ip=dhcp alpine_repo=http://dl-cdn.alpinelinux.org/alpine/edge/main/" \ | |
| -nographic |
nginx is a reverse proxy supported by Authelia
https://www.authelia.com/integration/proxies/nginx/
Note
Updated 22/08/2025 using nginx docs
This guide was adapted from https://gist.github.com/niw/e4313b9c14e968764a52375da41b4278#running-ubuntu-server-for-arm64
| # For each result of find call our script to run on the filename | |
| $ find . -name "*.md" -print0 | xargs -0 -I file ./prepend.sh file |
by xero updated 10.29.24