| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/thread-self/root/usr/share/wwwconfig-common/ |
Upload File : |
#!/bin/sh
# File: apache-index_all.sh
# Changes:
# 20010219 Ola Lundqvist <opal@debian.org>
# 20010222 Ola Lundqvist <opal@debian.org>
# 20011022 Luca De Vitis <luca@debian.org>
# Introduced the error variable.
# 20020116 Ola Lundqvist <opal@debian.org>
# Documented the error variable, also fixed a bug in one of
# the error messages.
# 20020412 Ola Lundqvist <opal@debian.org>
# Added check for if the server is installed or not.
# Needs: $index - the index file to add.
# $server - the server to use.
# Anything that matches /etc/$server/*.conf
# Description: Adds an index to the servers apache config.
# Ie: adds to DirectoryIndex
# Sets: $status = {error, nothing, found, added}
# $error = error message (if $status = error)
lstatus=error
if [ -z "$index" ] ; then
error="No index specified in apache-index_all.sh."
elif [ -z "$server" ] ; then
error="No server specified in apache-index_all.sh."
elif [ ! -d /etc/$server ] ; then
error="No server $server installed, unable to configure it."
else
lstatus=nothing
for conffile in /etc/$server/srm.conf /etc/$server/httpd.conf ; do
. /usr/share/wwwconfig-common/apache-index.sh
if [ "$lstatus" != "added" -a "$lstatus" != "error" ] ; then
lstatus=$status
fi
if [ "$status" = "added" ] ; then
lstatus=added
fi
done
fi
status=$lstatus