Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
bitnami /
scripts /
varnish /
[ HOME SHELL ]
Name
Size
Permission
Action
postunpack.sh
3.95
KB
-rwxr-xr-x
resize.sh
508
B
-rwxr-xr-x
restart.sh
442
B
-rwxr-xr-x
run.sh
590
B
-rwxr-xr-x
setup.sh
1.32
KB
-rwxr-xr-x
start.sh
837
B
-rwxr-xr-x
status.sh
508
B
-rwxr-xr-x
stop.sh
734
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setup.sh
#!/bin/bash # Copyright Broadcom, Inc. All Rights Reserved. # SPDX-License-Identifier: APACHE-2.0 # shellcheck disable=SC1091 set -o errexit set -o nounset set -o pipefail # set -o xtrace # Uncomment this line for debugging purposes # Load libraries . /opt/bitnami/scripts/libvarnish.sh # Load Varnish environment . /opt/bitnami/scripts/varnish-env.sh # Ensure Varnish environment variables are valid varnish_validate # Ensure Varnish is initialized varnish_initialize # shellcheck disable=SC1091 # Load additional libraries . /opt/bitnami/scripts/libfile.sh # Update default value for environment variables, if set (they're empty by default) # Varnish does not have any configuration file for setting runtime values, so they must be set as command-line arguments # Since we don't have a metadata store for such values, we will instead rely on the 'varnish-env.sh' file for defaults for env in VARNISH_LISTEN_ADDRESS VARNISH_PORT_NUMBER VARNISH_CONF_FILE; do [[ -z "${!env}" ]] && continue replace_in_file /opt/bitnami/scripts/varnish-env.sh "^export ${env}=.*" "export ${env}=\"\${${env}:-${!env}}\"" done # Disable the Varnish service if desired if [[ "$BITNAMI_SERVICE_MANAGER" = "systemd" ]] && is_boolean_yes "$VARNISH_DISABLE_SERVICE"; then info "Disabling Varnish service" systemctl disable bitnami.varnish.service fi
Close