sullise said:
Can you post the httpd.conf here?
(the perl error is ok,,, you can ignore that).
ServerType standalone ServerRoot "/etc/httpd" LockFile /var/run/httpd.lock PidFile /var/run/httpd.pid ScoreBoardFile logs/apache_runtime_status ResourceConfig /dev/null AccessConfig /dev/null Timeout 300 KeepAlive On MaxKeepAliveRequests 500 KeepAliveTimeout 5 MinSpareServers 5 MaxSpareServers 20 StartServers 8 MaxClients 4500 MaxRequestsPerChild 1000 #LoadModule mmap_static_module modules/mod_mmap_static.so LoadModule vhost_alias_module modules/mod_vhost_alias.so LoadModule bandwidth_module modules/mod_bandwidth.so LoadModule throttle_module modules/mod_throttle.so LoadModule env_module modules/mod_env.so LoadModule config_log_module modules/mod_log_config.so LoadModule agent_log_module modules/mod_log_agent.so LoadModule referer_log_module modules/mod_log_referer.so #LoadModule mime_magic_module modules/mod_mime_magic.so LoadModule mime_module modules/mod_mime.so LoadModule negotiation_module modules/mod_negotiation.so LoadModule status_module modules/mod_status.so LoadModule info_module modules/mod_info.so LoadModule includes_module modules/mod_include.so LoadModule autoindex_module modules/mod_autoindex.so LoadModule dir_module modules/mod_dir.so LoadModule cgi_module modules/mod_cgi.so LoadModule asis_module modules/mod_asis.so LoadModule imap_module modules/mod_imap.so LoadModule action_module modules/mod_actions.so #LoadModule speling_module modules/mod_speling.so LoadModule userdir_module modules/mod_userdir.so LoadModule alias_module modules/mod_alias.so LoadModule rewrite_module modules/mod_rewrite.so LoadModule access_module modules/mod_access.so LoadModule auth_module modules/mod_auth.so LoadModule anon_auth_module modules/mod_auth_anon.so #LoadModule db_auth_module modules/mod_auth_db.so #LoadModule auth_any_module modules/mod_auth_any.so #LoadModule dbm_auth_module modules/mod_auth_dbm.so #LoadModule auth_ldap_module modules/mod_auth_ldap.so #LoadModule mysql_auth_module modules/mod_auth_mysql.so #LoadModule auth_pgsql_module modules/mod_auth_pgsql.so #LoadModule digest_module modules/mod_digest.so #LoadModule proxy_module modules/libproxy.so #LoadModule cern_meta_module modules/mod_cern_meta.so LoadModule expires_module modules/mod_expires.so LoadModule headers_module modules/mod_headers.so #LoadModule usertrack_module modules/mod_usertrack.so #LoadModule example_module modules/mod_example.so #LoadModule unique_id_module modules/mod_unique_id.so LoadModule setenvif_module modules/mod_setenvif.so LoadModule perl_module modules/libperl.so LoadModule php_module modules/mod_php.so LoadModule php3_module modules/libphp3.so # #LoadModule php4_module modules/libphp4.so # LoadModule php4_module /usr/lib/apache/libphp4.so LoadModule dav_module modules/libdav.so LoadModule roaming_module modules/mod_roaming.so ### LoadModule ssl_module modules/libssl.so ### LoadModule put_module modules/mod_put.so LoadModule python_module modules/mod_python.so LoadModule php4_module /usr/lib/apache/libphp4.so LoadModule security_module /usr/lib/apache/mod_security.so LoadModule perl_module /usr/lib/apache/libperl.so LoadModule ipdrop_module /usr/lib/apache/mod_ipdrop.so ClearModuleList #AddModule mod_mmap_static.c AddModule mod_vhost_alias.c AddModule mod_bandwidth.c AddModule mod_throttle.c AddModule mod_env.c AddModule mod_log_config.c AddModule mod_log_agent.c AddModule mod_log_referer.c #AddModule mod_mime_magic.c AddModule mod_mime.c AddModule mod_negotiation.c AddModule mod_status.c AddModule mod_info.c AddModule mod_include.c AddModule mod_autoindex.c AddModule mod_dir.c AddModule mod_cgi.c AddModule mod_asis.c AddModule mod_imap.c AddModule mod_actions.c #AddModule mod_speling.c AddModule mod_userdir.c AddModule mod_alias.c AddModule mod_rewrite.c AddModule mod_access.c AddModule mod_auth.c AddModule mod_auth_anon.c #AddModule mod_auth_db.c #AddModule mod_auth_any.c #AddModule mod_auth_dbm.c #AddModule auth_ldap.c #AddModule mod_auth_mysql.c #AddModule mod_auth_pgsql.c #AddModule mod_digest.c #AddModule mod_proxy.c #AddModule mod_cern_meta.c AddModule mod_expires.c AddModule mod_headers.c #AddModule mod_usertrack.c #AddModule mod_example.c #AddModule mod_unique_id.c AddModule mod_so.c AddModule mod_setenvif.c AddModule mod_frontpage.c AddModule mod_perl.c AddModule mod_php.c AddModule mod_php3.c ### AddModule mod_php4.c ### AddModule mod_dav.c AddModule mod_roaming.c ### AddModule mod_ssl.c ### AddModule mod_put.c AddModule mod_python.c AddModule mod_security.c AddModule mod_ipdrop.c Port 80 Listen 80 Listen 443 User apache Group apache ServerAdmin root@localhost DocumentRoot "/var/www/html" Options FollowSymLinks AllowOverride All Options Indexes FollowSymLinks MultiViews AllowOverride All Order allow,deny Allow from all AddHandler cgi-script .cgi .pl GlobalMaxConnectionsPerIP 5 # Enable ModSecurity SecFilterEngine On # Reject requests with status 403 SecFilterDefaultAction "deny,log,status:403" # Some sane defaults SecFilterScanPOST On SecFilterCheckURLEncoding On SecFilterCheckUnicodeEncoding Off # Accept almost all byte values SecFilterForceByteRange 1 255 # Server masking is optional # SecServerSignature "Microsoft-IIS/5.0" # Designate a directory for temporary files # storage. It is a good idea to change the # value below to a private directory, just as # an additional measure against race conditions SecUploadDir /tmp SecUploadKeepFiles Off # Only record the interesting stuff SecAuditEngine RelevantOnly # Uncomment below to record responses with unusual statuses # SecAuditLogRelevantStatus ^5 SecAuditLog logs/modsec_audit.log # You normally won't need debug logging SecFilterDebugLevel 0 SecFilterDebugLog logs/modsec_debug.log # Only accept request encodings we know how to handle # we exclude GET requests from this because some (automated) # clients supply "text/html" as Content-Type SecFilterSelective REQUEST_METHOD "!^(GET|HEAD)$" chain SecFilterSelective HTTP_Content-Type "!(^application/x-www-form-urlencoded$|^multipart/form-data
" # Do not accept GET or HEAD requests with bodies SecFilterSelective REQUEST_METHOD "^(GET|HEAD)$" chain SecFilterSelective HTTP_Content-Length "!^$" # Require Content-Length to be provided with # every POST request SecFilterSelective REQUEST_METHOD "^POST$" chain SecFilterSelective HTTP_Content-Length "^$" # Don't accept transfer encodings we know we don't handle SecFilterSelective HTTP_Transfer-Encoding "!^$" #UserDir public_html UserDir disabled AllowOverride All Options MultiViews -Indexes FollowSymlinks IncludesNoExec +Includes Order allow,deny Allow from all Order deny,allow Deny from all DirectoryIndex index.html index.htm index.shtml index.php index.php4 index.php3 index.phtml index.cgi AccessFileName .htaccess Order allow,deny Deny from all Satisfy All UseCanonicalName Off TypesConfig /etc/mime.types DefaultType text/plain # MIMEMagicFile /usr/share/magic.mime MIMEMagicFile conf/magic HostnameLookups Off ErrorLog logs/error_log LogLevel warn LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent LogFormat "%b" bytes CustomLog logs/access_log combined ServerSignature On ###### # Uncomment this next bit if you need to # see the apache status of all incoming # connections # ExtendedStatus On SetHandler server-status # ####### Alias /icons/ "/var/www/icons/" Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all Alias /server-images/ "/var/www/html/images/" Options Indexes MultiViews AllowOverride None Order allow,deny Allow from all #ScriptAlias /cgi-sbin/ "/var/www/cgi-bin/" AllowOverride None Options None Order allow,deny Allow from all IndexOptions FancyIndexing NameWidth=* AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip AddIconByType (TXT,/icons/text.gif) text/* AddIconByType (IMG,/icons/image2.gif) image/* AddIconByType (SND,/icons/sound2.gif) audio/* AddIconByType (VID,/icons/movie.gif) video/* AddIcon /icons/binary.gif .bin .exe AddIcon /icons/binhex.gif .hqx AddIcon /icons/tar.gif .tar AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip AddIcon /icons/a.gif .ps .ai .eps AddIcon /icons/layout.gif .html .shtml .htm .pdf AddIcon /icons/text.gif .txt AddIcon /icons/c.gif .c AddIcon /icons/p.gif .pl .py AddIcon /icons/f.gif .for AddIcon /icons/dvi.gif .dvi AddIcon /icons/uuencoded.gif .uu AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl AddIcon /icons/tex.gif .tex AddIcon /icons/bomb.gif core AddIcon /icons/back.gif .. AddIcon /icons/hand.right.gif README AddIcon /icons/folder.gif ^^DIRECTORY^^ AddIcon /icons/blank.gif ^^BLANKICON^^ DefaultIcon /icons/unknown.gif #AddDescription "GZIP compressed document" .gz #AddDescription "tar archive" .tar #AddDescription "GZIP compressed tar archive" .tgz ReadmeName README HeaderName HEADER IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t AddEncoding x-compress Z AddEncoding x-gzip gz tgz AddLanguage da .dk AddLanguage nl .nl AddLanguage en .en AddLanguage et .ee AddLanguage fr .fr AddLanguage de .de AddLanguage el .el AddLanguage he .he AddCharset ISO-8859-8 .iso8859-8 AddLanguage it .it AddLanguage ja .ja AddCharset ISO-2022-JP .jis AddLanguage kr .kr AddCharset ISO-2022-KR .iso-kr AddLanguage nn .nn AddLanguage no .no AddLanguage pl .po AddCharset ISO-8859-2 .iso-pl AddLanguage pt .pt AddLanguage pt-br .pt-br AddLanguage ltz .lu AddLanguage ca .ca AddLanguage es .es AddLanguage sv .se AddLanguage cz .cz AddLanguage ru .ru AddLanguage zh-tw .tw AddLanguage tw .tw AddCharset Big5 .Big5 .big5 AddCharset WINDOWS-1251 .cp-1251 AddCharset CP866 .cp866 AddCharset ISO-8859-5 .iso-ru AddCharset KOI8-R .koi8-r AddCharset UCS-2 .ucs2 AddCharset UCS-4 .ucs4 AddCharset UTF-8 .utf8 LanguagePriority en da nl et fr de el it ja kr no pl pt pt-br ru ltz ca es sv tw AddType application/x-tar .tgz AddType application/x-httpd-php .inc .php .php4 .php3 .phtml AddType application/x-httpd-php-source .phps AddType application/x-httpd-php3 .php3 AddType application/x-httpd-php3-source .phps AddType application/x-httpd-php .phtml AddHandler cgi-script .cgi .pl AddType text/html .shtml AddHandler server-parsed .shtml #AddHandler send-as-is asis AddHandler imap-file map #AddHandler type-map var BrowserMatch "Mozilla/2" nokeepalive BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0 BrowserMatch "RealPlayer 4\.0" force-response-1.0 BrowserMatch "Java/1\.0" force-response-1.0 BrowserMatch "JDK/1\.0" force-response-1.0 Alias /doc/ /usr/share/doc/ order deny,allow deny from all allow from localhost .localdomain Options Indexes FollowSymLinks ### AddType application/x-x509-ca-cert .crt AddType application/x-pkcs7-crl .crl ### # Pass Phrase Dialog: # Configure the pass phrase gathering process. # The filtering dialog program (`builtin' is a internal # terminal dialog) has to provide the pass phrase on stdout. SSLPassPhraseDialog builtin # Inter-Process Session Cache: # Configure the SSL Session Cache: First the mechanism # to use and second the expiring timeout (in seconds). SSLSessionCache none #SSLSessionCache shmht:logs/ssl_scache(512000) #SSLSessionCache shmcb:logs/ssl_scache(512000) #SSLSessionCache dbm:logs/ssl_scache SSLSessionCacheTimeout 300 # Semaphore: # Configure the path to the mutual exclusion semaphore the # SSL engine uses internally for inter-process synchronization. SSLMutex file:logs/ssl_mutex # Pseudo Random Number Generator (PRNG): # Configure one or more sources to seed the PRNG of the # SSL library. The seed data should be of good random quality. # WARNING! On some platforms /dev/random blocks if not enough entropy # is available. This means you then cannot use the /dev/random device # because it would lead to very long connection times (as long as # it requires to make more entropy available). But usually those # platforms additionally provide a /dev/urandom device which doesn't # block. So, if available, use this one instead. Read the mod_ssl User # Manual for more details. SSLRandomSeed startup builtin SSLRandomSeed connect builtin #SSLRandomSeed startup file:/dev/random 512 #SSLRandomSeed startup file:/dev/urandom 512 #SSLRandomSeed connect file:/dev/random 512 #SSLRandomSeed connect file:/dev/urandom 512 # Logging: # The home of the dedicated SSL protocol logfile. Errors are # additionally duplicated in the general error log file. Put # this somewhere where it cannot be used for symlink attacks on # a real server (i.e. somewhere where only root can write). # Log levels are (ascending order: higher ones include lower ones): # none, error, warn, info, trace, debug. SSLLog logs/ssl_engine_log SSLLogLevel error ### ## ## SSL Virtual Host Context ## ErrorLog logs/error_log TransferLog logs/access_log # SSL Engine Switch: # Enable/Disable SSL for this virtual host. SSLEngine on # SSL Cipher Suite: # List the ciphers that the client is permitted to negotiate. # See the mod_ssl documentation for a complete list. #SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL # Server Certificate: # Point SSLCertificateFile at a PEM encoded certificate. If # the certificate is encrypted, then you will be prompted for a # pass phrase. Note that a kill -HUP will prompt again. A test # certificate can be generated with `make certificate' under # built time. Keep in mind that if you've both a RSA and a DSA # certificate you can configure both in parallel (to also allow # the use of DSA ciphers, etc.) SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt #SSLCertificateFile /etc/httpd/conf/ssl.crt/server-dsa.crt # Server Private Key: # If the key is not combined with the certificate, use this # directive to point at the key file. Keep in mind that if # you've both a RSA and a DSA private key you can configure # both in parallel (to also allow the use of DSA ciphers, etc.) SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key #SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server-dsa.key # Server Certificate Chain: # Point SSLCertificateChainFile at a file containing the # concatenation of PEM encoded CA certificates which form the # certificate chain for the server certificate. Alternatively # the referenced file can be the same as SSLCertificateFile # when the CA certificates are directly appended to the server # certificate for convinience. #SSLCertificateChainFile /etc/httpd/conf/ssl.crt/ca.crt # Certificate Authority (CA): # Set the CA certificate verification path where to find CA # certificates for client authentication or alternatively one # huge file containing all of them (file must be PEM encoded) # Note: Inside SSLCACertificatePath you need hash symlinks # to point to the certificate files. Use the provided # Makefile to update the hash symlinks after changes. #SSLCACertificatePath /etc/httpd/conf/ssl.crt #SSLCACertificateFile /etc/httpd/conf/ssl.crt/ca-bundle.crt # Certificate Revocation Lists (CRL): # Set the CA revocation path where to find CA CRLs for client # authentication or alternatively one huge file containing all # of them (file must be PEM encoded) # Note: Inside SSLCARevocationPath you need hash symlinks # to point to the certificate files. Use the provided # Makefile to update the hash symlinks after changes. #SSLCARevocationPath /etc/httpd/conf/ssl.crl #SSLCARevocationFile /etc/httpd/conf/ssl.crl/ca-bundle.crl # Client Authentication (Type): # Client certificate verification type and depth. Types are # none, optional, require and optional_no_ca. Depth is a # number which specifies how deeply to verify the certificate # issuer chain before deciding the certificate is not valid. #SSLVerifyClient require #SSLVerifyDepth 10 # Access Control: # With SSLRequire you can do per-directory access control based # on arbitrary complex boolean expressions containing server # variable checks and other lookup directives. The syntax is a # mixture between C and Perl. See the mod_ssl documentation # for more details. # #SSLRequire ( %{SSL_CIPHER} !~ m/^(EXP|NULL)/ \ # and %{SSL_CLIENT_S_DN_O} eq "Snake Oil, Ltd." \ # and %{SSL_CLIENT_S_DN_OU} in {"Staff", "CA", "Dev"} \ # and %{TIME_WDAY} >= 1 and %{TIME_WDAY} <= 5 \ # and %{TIME_HOUR} >= 8 and %{TIME_HOUR} <= 20 ) \ # or %{REMOTE_ADDR} =~ m/^192\.76\.162\.[0-9]+$/ # # SSL Engine Options: # Set various options for the SSL engine. # o FakeBasicAuth: # Translate the client X.509 into a Basic Authorisation. This means that # the standard Auth/DBMAuth methods can be used for access control. The # user name is the `one line' version of the client's X.509 certificate. # Note that no password is obtained from the user. Every entry in the user # file needs this password: `xxj31ZMTZzkVA'. # o ExportCertData: # This exports two additional environment variables: SSL_CLIENT_CERT and # SSL_SERVER_CERT. These contain the PEM-encoded certificates of the # server (always existing) and the client (only existing when client # authentication is used). This can be used to import the certificates # into CGI scripts. # o StdEnvVars: # This exports the standard SSL/TLS related `SSL_*' environment variables. # Per default this exportation is switched off for performance reasons, # because the extraction step is an expensive operation and is usually # useless for serving static content. So one usually enables the # exportation for CGI and SSI requests only. # o CompatEnvVars: # This exports obsolete environment variables for backward compatibility # to Apache-SSL 1.x, mod_ssl 2.0.x, Sioux 1.0 and Stronghold 2.x. Use this # to provide compatibility to existing CGI scripts. # o StrictRequire: # This denies access when "SSLRequireSSL" or "SSLRequire" applied even # under a "Satisfy any" situation, i.e. when it applies access is denied # and no other module can change it. # o OptRenegotiate: # This enables optimized SSL connection renegotiation handling when SSL # directives are used in per-directory context. #SSLOptions +FakeBasicAuth +ExportCertData +CompatEnvVars +StrictRequire SSLOptions +StdEnvVars SSLOptions +StdEnvVars SetEnvIf User-Agent ".*MSIE.*" \ nokeepalive ssl-unclean-shutdown \ downgrade-1.0 force-response-1.0 # Per-Server Logging: # The home of a custom SSL log file. Use this when you want a # compact non-error SSL logfile on a virtual host basis. CustomLog logs/ssl_request_log \ "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b" ### #Start DirectAdmin Settings Alias /config /var/www/html/redirect.php Alias /phpMyAdmin /var/www/html/phpMyAdmin/ Alias /phpmyadmin /var/www/html/phpMyAdmin/ Alias /webmail /var/www/html/webmail/ Alias /squirrelmail /var/www/html/squirrelmail/ Alias /rpanel /var/www/html/rpanel/ ErrorDocument 400 /400.shtml ErrorDocument 401 /401.shtml ErrorDocument 403 /403.shtml ErrorDocument 404 /404.shtml ErrorDocument 500 /500.shtml #All NameVirtualHost lines are in this file #Don't remove this line or apache will generate errors. Include /etc/httpd/conf/ips.conf LogFormat "%b \"%r\"" homedir #The default site for the server. ServerAdmin
[email protected] AliasMatch ^/~([^/]+)(/.*)* /home/$1/public_html$2 DocumentRoot /var/www/html ServerName localhost ScriptAlias /cgi-bin/ /var/www/cgi-bin/ CustomLog /var/log/httpd/homedir.log homedir ServerName localhost ServerAdmin
[email protected] AliasMatch ^/~([^/]+)(/.*)* /home/$1/public_html$2 DocumentRoot /var/www/html ScriptAlias /cgi-bin/ /var/www/cgi-bin/ SSLEngine on SSLCertificateFile /etc/httpd/conf/ssl.crt/server.crt SSLCertificateKeyFile /etc/httpd/conf/ssl.key/server.key CustomLog /var/log/httpd/homedir.log homedir ServerName rpanel.oxserv.net ServerAlias rpanel.oxserv.net ServerAdmin
[email protected] DocumentRoot /var/www/html/rpanel/ ScriptAlias /cgi-bin/ /var/www/html/rpanel/cgi-bin/ User admin Group admin Options +Includes -Indexes #php_admin_value open_basedir /home/admin/:/tmp/:/var/www/:/usr/local/lib/php/:/etc/virtual/ Include /usr/local/directadmin/data/users/adirba/httpd.conf Include /usr/local/directadmin/data/users/admin/httpd.conf Include /usr/local/directadmin/data/users/afi1/httpd.conf Include /usr/local/directadmin/data/users/afi/httpd.conf Include /usr/local/directadmin/data/users/alufotpi/httpd.conf Include /usr/local/directadmin/data/users/ariel/httpd.conf Include /usr/local/directadmin/data/users/atombomb/httpd.conf Include /usr/local/directadmin/data/users/avi56/httpd.conf Include /usr/local/directadmin/data/users/aviranc/httpd.conf Include /usr/local/directadmin/data/users/benco50/httpd.conf Include /usr/local/directadmin/data/users/bigr/httpd.conf #Include /usr/local/directadmin/data/users/biton/httpd.conf #Include /usr/local/directadmin/data/users/blitzkrieg/httpd.conf #Include /usr/local/directadmin/data/users/booten/httpd.conf #Include /usr/local/directadmin/data/users/bootsh/httpd.conf #Include /usr/local/directadmin/data/users/britneyh/httpd.conf #Include /usr/local/directadmin/data/users/cpanel/httpd.conf #Include /usr/local/directadmin/data/users/darkstar/httpd.conf Include /usr/local/directadmin/data/users/dorix/httpd.conf Include /usr/local/directadmin/data/users/dvir1/httpd.conf Include /usr/local/directadmin/data/users/dvir23/httpd.conf Include /usr/local/directadmin/data/users/electroj/httpd.conf Include /usr/local/directadmin/data/users/elentok/httpd.conf #Include /usr/local/directadmin/data/users/eliran23/httpd.conf Include /usr/local/directadmin/data/users/eliran/httpd.conf Include /usr/local/directadmin/data/users/eliranr/httpd.conf Include /usr/local/directadmin/data/users/eltops1/httpd.conf Include /usr/local/directadmin/data/users/eve23/httpd.conf Include /usr/local/directadmin/data/users/exploit/httpd.conf Include /usr/local/directadmin/data/users/gameszone/httpd.conf Include /usr/local/directadmin/data/users/garfield/httpd.conf Include /usr/local/directadmin/data/users/gbox/httpd.conf Include /usr/local/directadmin/data/users/gez/httpd.conf Include /usr/local/directadmin/data/users/gin/httpd.conf Include /usr/local/directadmin/data/users/hbang/httpd.conf Include /usr/local/directadmin/data/users/idan/httpd.conf Include /usr/local/directadmin/data/users/idans/httpd.conf Include /usr/local/directadmin/data/users/ilanr/httpd.conf Include /usr/local/directadmin/data/users/inoded/httpd.conf Include /usr/local/directadmin/data/users/izoov/httpd.conf Include /usr/local/directadmin/data/users/kita/httpd.conf Include /usr/local/directadmin/data/users/klement/httpd.conf Include /usr/local/directadmin/data/users/kuchi/httpd.conf #Include /usr/local/directadmin/data/users/liortolm/httpd.conf Include /usr/local/directadmin/data/users/m00trix/httpd.conf Include /usr/local/directadmin/data/users/matanel/httpd.conf #Include /usr/local/directadmin/data/users/matangita/httpd.conf Include /usr/local/directadmin/data/users/messada/httpd.conf Include /usr/local/directadmin/data/users/miko/httpd.conf Include /usr/local/directadmin/data/users/moshe/httpd.conf #Include /usr/local/directadmin/data/users/mosher/httpd.conf #Include /usr/local/directadmin/data/users/mrgolan/httpd.conf Include /usr/local/directadmin/data/users/mybbtest/httpd.conf Include /usr/local/directadmin/data/users/newg/httpd.conf Include /usr/local/directadmin/data/users/newsofts/httpd.conf #Include /usr/local/directadmin/data/users/omri2/httpd.conf #Include /usr/local/directadmin/data/users/orr/httpd.conf Include /usr/local/directadmin/data/users/oshri/httpd.conf #Include /usr/local/directadmin/data/users/oxxxserv/httpd.conf #Include /usr/local/directadmin/data/users/ozb1/httpd.conf Include /usr/local/directadmin/data/users/panelox/httpd.conf Include /usr/local/directadmin/data/users/panels/httpd.conf Include /usr/local/directadmin/data/users/proart/httpd.conf Include /usr/local/directadmin/data/users/psyex/httpd.conf Include /usr/local/directadmin/data/users/pub/httpd.conf Include /usr/local/directadmin/data/users/radio/httpd.conf Include /usr/local/directadmin/data/users/radioash/httpd.conf Include /usr/local/directadmin/data/users/radiolev/httpd.conf Include /usr/local/directadmin/data/users/reboot/httpd.conf Include /usr/local/directadmin/data/users/ronenad/httpd.conf #Include /usr/local/directadmin/data/users/ronenr/httpd.conf #Include /usr/local/directadmin/data/users/sadir/httpd.conf Include /usr/local/directadmin/data/users/satla/httpd.conf Include /usr/local/directadmin/data/users/secretdan/httpd.conf #Include /usr/local/directadmin/data/users/servision/httpd.conf Include /usr/local/directadmin/data/users/servisions/httpd.conf #Include /usr/local/directadmin/data/users/sharvit/httpd.conf Include /usr/local/directadmin/data/users/sharvitr/httpd.conf Include /usr/local/directadmin/data/users/site/httpd.conf #Include /usr/local/directadmin/data/users/slayed/httpd.conf Include /usr/local/directadmin/data/users/smcomp/httpd.conf Include /usr/local/directadmin/data/users/smradiobot/httpd.conf Include /usr/local/directadmin/data/users/softs/httpd.conf Include /usr/local/directadmin/data/users/sssggg/httpd.conf Include /usr/local/directadmin/data/users/street/httpd.conf Include /usr/local/directadmin/data/users/subs/httpd.conf #Include /usr/local/directadmin/data/users/tal/httpd.conf Include /usr/local/directadmin/data/users/tattoo/httpd.conf Include /usr/local/directadmin/data/users/theshark/httpd.conf #Include /usr/local/directadmin/data/users/thex/httpd.conf Include /usr/local/directadmin/data/users/tibi/httpd.conf Include /usr/local/directadmin/data/users/turbo/httpd.conf Include /usr/local/directadmin/data/users/uploadf/httpd.conf Include /usr/local/directadmin/data/users/vvvv/httpd.conf Include /usr/local/directadmin/data/users/whisper/httpd.conf Include /usr/local/directadmin/data/users/yb5/httpd.conf Include /usr/local/directadmin/data/users/ycell/httpd.conf Include /usr/local/directadmin/data/users/zahi/httpd.conf Include /usr/local/directadmin/data/users/zeev/httpd.conf #Include /usr/local/directadmin/data/users/zoarr/httpd.conf Include /usr/local/directadmin/data/users/rock/httpd.conf Include /usr/local/directadmin/data/users/neryaz/httpd.conf Include /usr/local/directadmin/data/users/atgar/httpd.conf #Include /usr/local/directadmin/data/users/zoh/httpd.conf Include /usr/local/directadmin/data/users/a1234/httpd.conf Include /usr/local/directadmin/data/users/lioran/httpd.conf Include /usr/local/directadmin/data/users/shay/httpd.conf Include /usr/local/directadmin/data/users/adir10/httpd.conf Include /usr/local/directadmin/data/users/avstyle/httpd.conf Include /usr/local/directadmin/data/users/eeee/httpd.conf Include /usr/local/directadmin/data/users/shekill/httpd.conf Include /usr/local/directadmin/data/users/idan12/httpd.conf Include /usr/local/directadmin/data/users/gbspeed/httpd.conf Include /usr/local/directadmin/data/users/cyberweb/httpd.conf Include /usr/local/directadmin/data/users/akamol/httpd.conf Include /usr/local/directadmin/data/users/dsafs/httpd.conf Include /usr/local/directadmin/data/users/meidan/httpd.conf Include /usr/local/directadmin/data/users/radioma/httpd.conf Include /usr/local/directadmin/data/users/inuyasha/httpd.conf Include /usr/local/directadmin/data/users/david/httpd.conf Include /usr/local/directadmin/data/users/djelior/httpd.conf Include /usr/local/directadmin/data/users/yahav/httpd.conf Include /usr/local/directadmin/data/users/yosi/httpd.conf Include /usr/local/directadmin/data/users/yosi2/httpd.conf Include /usr/local/directadmin/data/users/klklkl/httpd.conf Include /usr/local/directadmin/data/users/lastone/httpd.conf Include /usr/local/directadmin/data/users/tom/httpd.conf Include /usr/local/directadmin/data/users/headroom/httpd.conf Include /usr/local/directadmin/data/users/zila/httpd.conf Include /usr/local/directadmin/data/users/kol/httpd.conf Include /usr/local/directadmin/data/users/style/httpd.conf Include /usr/local/directadmin/data/users/gishur/httpd.conf Include /usr/local/directadmin/data/users/levmmm/httpd.conf Include /usr/local/directadmin/data/users/xshmulik/httpd.conf Include /usr/local/directadmin/data/users/zoar/httpd.conf Include /usr/local/directadmin/data/users/liorbot/httpd.conf Include /usr/local/directadmin/data/users/daniel/httpd.conf Include /usr/local/directadmin/data/users/d22d/httpd.conf Include /usr/local/directadmin/data/users/forum/httpd.conf Include /usr/local/directadmin/data/users/splus/httpd.conf Include /usr/local/directadmin/data/users/doritos/httpd.conf Include /usr/local/directadmin/data/users/oshrik/httpd.conf Include /usr/local/directadmin/data/users/ocraft/httpd.conf #Include /usr/local/directadmin/data/users/radio2/httpd.conf Include /usr/local/directadmin/data/users/godexradio/httpd.conf Include /usr/local/directadmin/data/users/cllas/httpd.conf Include /usr/local/directadmin/data/users/idaniii/httpd.conf Include /usr/local/directadmin/data/users/lll1/httpd.conf Include /usr/local/directadmin/data/users/lll2/httpd.conf Include /usr/local/directadmin/data/users/lll3/httpd.conf Include /usr/local/directadmin/data/users/matan/httpd.conf Include /usr/local/directadmin/data/users/nolong/httpd.conf Include /usr/local/directadmin/data/users/djzahi/httpd.conf Include /usr/local/directadmin/data/users/dani/httpd.conf Include /usr/local/directadmin/data/users/iland/httpd.conf Include /usr/local/directadmin/data/users/tomerzhr/httpd.conf Include /usr/local/directadmin/data/users/pizuz/httpd.conf Include /usr/local/directadmin/data/users/vadim/httpd.conf Include /usr/local/directadmin/data/users/ma7tan/httpd.conf Include /usr/local/directadmin/data/users/haim/httpd.conf Include /usr/local/directadmin/data/users/bamba1/httpd.conf Include /usr/local/directadmin/data/users/tsart/httpd.conf Include /usr/local/directadmin/data/users/number5/httpd.conf Include /usr/local/directadmin/data/users/macck/httpd.conf Include /usr/local/directadmin/data/users/max/httpd.conf Include /usr/local/directadmin/data/users/avi4/httpd.conf Include /usr/local/directadmin/data/users/yael/httpd.conf Include /usr/local/directadmin/data/users/shay1/httpd.conf Include /usr/local/directadmin/data/users/liron/httpd.conf Include /usr/local/directadmin/data/users/klick/httpd.conf Include /usr/local/directadmin/data/users/djs/httpd.conf Include /usr/local/directadmin/data/users/pizuzm/httpd.conf Include /usr/local/directadmin/data/users/bartov/httpd.conf Include /usr/local/directadmin/data/users/sagi123/httpd.conf Include /usr/local/directadmin/data/users/omri/httpd.conf Include /usr/local/directadmin/data/users/nati/httpd.conf Include /usr/local/directadmin/data/users/asi/httpd.conf Include /usr/local/directadmin/data/users/valentin/httpd.conf #Include /usr/local/directadmin/data/users/zvaim/httpd.conf Include /usr/local/directadmin/data/users/mom/httpd.conf Include /usr/local/directadmin/data/users/hapoel/httpd.conf Include /usr/local/directadmin/data/users/biton/httpd.conf