### LLNG Authentication Attribute Conversion Example Source: https://github.com/tiredofit/docker-backuppc/blob/main/README.md Demonstrates how to format LLNG authentication attributes. The system automatically adds '$' prefixes to variables when converting the configuration. ```bash NGINX_AUTHENTICATION_LLNG_ATTRIBUTE1=HTTP_AUTH_USER,uid,upstream_http_uid ``` -------------------------------- ### Basic Nginx Authentication Setup Source: https://github.com/tiredofit/docker-backuppc/blob/main/README.md Configure basic HTTP authentication for the BackupPC web interface. Set the authentication type to BASIC and provide a username and password. ```bash NGINX_AUTHENTICATION_TYPE=BASIC NGINX_AUTHENTICATION_BASIC_USER1=backuppc NGINX_AUTHENTICATION_BASIC_PASS1=backuppc ``` -------------------------------- ### Access BackupPC Container Shell Source: https://github.com/tiredofit/docker-backuppc/blob/main/README.md Use this command to get a shell inside the running BackupPC container for debugging and maintenance. Replace '(whatever your container name is)' with the actual name of your container. ```bash docker exec -it (whatever your container name is) bash ``` -------------------------------- ### Pull Prebuilt Image from Docker Hub Source: https://github.com/tiredofit/docker-backuppc/blob/main/README.md Pulls the latest BackupPC image from Docker Hub. Replace '(imagetag)' with the desired tag. ```bash docker pull docker.io/tiredofit/backuppc:(imagetag) ``` -------------------------------- ### Pull Prebuilt Image from Github Container Registry Source: https://github.com/tiredofit/docker-backuppc/blob/main/README.md Pulls the latest BackupPC image from the Github Container Registry. Replace '(imagetag)' with the desired tag. ```bash docker pull ghcr.io/tiredofit/docker-backuppc:(imagetag) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.