This is a quick (rough) guide on how to protect a Serverpilot pilot app with auth basic
htpasswd-sp -c ~/apps/APPNAME/.htpasswd desired_username
(you will be asked for your root password)
su
mv /etc/nginx-sp/vhosts.d/APPNAME.d/main.conf /etc/nginx-sp/vhosts.d/APPNAME.d/main.custom.conf
nano /etc/nginx-sp/vhosts.d/APPNAME.d/main.custom.conf
auth_basic "Restricted";
auth_basic_user_file /srv/users/SERVERPILOTUSERNAME/apps/APPNAME/.htpasswd;
You must be logged in as root to do this
service nginx-sp restart