| Server IP : _ / Your IP : 169.254.129.1 Web Server : nginx/1.28.0 System : Linux 89e302d72aa1 6.6.143.1-1.azl3 #1 SMP PREEMPT_DYNAMIC Mon Jul 6 04:01:14 UTC 2026 x86_64 User : nginx ( 103) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /opt/startup/ |
Upload File : |
#if [ "$WEBSITE_SSH_ENABLED" != "0" ]; then
# 2>&1 - merges the output from stdout and stderr.
# /dev/null - pseudo-devices special file which accepts and discards all inputs, produces no output.
# In this case, ssh_setup.sh runs ssh-key which emits logs to the stdout. These contain some PII information and hence we want discard all the output using the following command.
/opt/startup/ssh_setup.sh 2>&1 > /dev/null
sed -i "s/SSH_PORT/$SSH_PORT/g" /etc/ssh/sshd_config
service ssh start
#fi