| Server IP : 54.250.94.235 / Your IP : 216.73.216.57 Web Server : Apache System : Linux ip-172-26-8-22 6.1.0-41-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-09) x86_64 User : bitnami ( 1000) PHP Version : 8.2.28 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/scripts/init/ |
Upload File : |
#!/bin/sh # Copyright VMware, Inc. # SPDX-License-Identifier: APACHE-2.0 # # Update the application DNS / Public IP configuration # . /opt/bitnami/scripts/init/functions WELCOME_FILE=`get_stored_data welcome_file_location` if [ "x$WELCOME_FILE" = "x" ] ; then exit 0 fi if [ "x$1" != "x" ]; then IP=$1 else IP=`get_server_domain` fi # replace IP address sed "s,@@IP_ADDRESS@@,$IP," \ </opt/bitnami/var/data/welcome_file_template \ >$WELCOME_FILE