Heray-Was-Here
Server : Apache
System : Linux ip-172-26-6-158 5.10.0-35-cloud-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
Directory :  /home/bitnami/stack/scripts/apache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/bitnami/stack/scripts/apache/postunpack-bitnami-permissions.sh
#!/bin/bash

# shellcheck disable=SC1091

set -o errexit
set -o nounset
set -o pipefail
# set -o xtrace # Uncomment this line for debugging purpose

# Load libraries
. /opt/bitnami/scripts/libapache.sh
. /opt/bitnami/scripts/libfs.sh
. /opt/bitnami/scripts/libos.sh

# Load Apache environment
. /opt/bitnami/scripts/apache-env.sh

# Allow the "bitnami" user to write to commonly used Apache directories, for improved developer experience
if user_exists "bitnami"; then
    chown -R bitnami "$APACHE_HTDOCS_DIR" "$APACHE_CONF_DIR"
fi

Hry