Файла к сожалению такого в этой директории нет..
Вот поподробнее:
1)
cat /etc/apache2/sites-enabled/exemple.com | egrep -v '^$|^#' <VirtualHost *:81>
ServerAdmin support@exemple.com
ServerName exemple.com
ServerAlias
www.exemple.com DocumentRoot /var/www/exemple_com/
<Directory />
Options FollowSymLinks
AllowOverride All
</Directory>
<Directory /var/www/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
allow from all
</Directory>
ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
<Directory "/usr/lib/cgi-bin">
AllowOverride All
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
Order allow,deny
Allow from all
</Directory>
ErrorLog /var/log/apache2/error_exemple.log
# Possible values include: debug, info, notice, warn, error, crit,
# alert, emerg.
LogLevel warn
CustomLog /var/log/apache2/access_exemple.log combined
Alias /doc/ "/usr/share/doc/"
<Directory "/usr/share/doc/">
Options Indexes MultiViews FollowSymLinks
AllowOverride All
Order deny,allow
Deny from all
Allow from 127.0.0.0/255.0.0.0 ::1/128
</Directory>
</VirtualHost>
2)
ls -la /var/wwwtotal 40
drwxr-xr-x 9 root root 4096 Oct 3 14:04 .
drwxr--r-- 15 root root 4096 Oct 3 17:11 ..
drwxr--r-- 2 root root 4096 Oct 3 07:28 default
drwxr-xr-x 2 root root 4096 Oct 3 07:28 ****_ru
drwxr-xr-x 9 root root 4096 Oct 3 14:04
exemple_comdrwxr--r-- 2 root root 4096 Oct 3 07:29 ***b_ru
drwxr--r-- 2 root root 4096 Oct 3 07:29 *****ss_ru
-rwxr--r-- 1 root root 177 Sep 29 12:55 index.html
drwxr--r-- 2 root root 4096 Oct 3 07:29 n*****_ru
drwxr--r-- 2 root root 4096 Oct 3 07:30 *****i_ru
3)
ls -la /var/www/exemple.comtotal 52
drwxr-xr-x 9 root root 4096 Oct 4 06:31 .
drwxr-xr-x 9 root root 4096 Oct 3 14:04 ..
drwxr-xr-x 6 root root 4096 May 6 07:07 admin
drwxr-xr-x 6 root root 4096 May 6 07:07 catalog
drwxr-xr-x 2 root root 4096 Mar 28 2011 cgi-bin
-rw-r--r-- 1 root root 634 Oct 3 11:01 config.php
drwxr-xr-x 2 root root 4096 May 6 07:08 download
drwxr-xr-x 2 root root 4096 May 6 07:08 export
-rw-r--r-- 1 root root 931 Oct 4 06:36 .htaccess
drwxr-xr-x 7 root root 4096 May 6 07:29 image
-rw-r--r-- 1 root root 5877 May 6 07:08 index.php
-rw-r--r-- 1 root root 169 May 6 07:08 robots.txt
drwxr-xr-x 11 root root 4096 May 6 07:08 system
4)
cat /var/www/exemple.com/.htaccess# Подробнее на
http://myopencart.ruOptions +FollowSymlinks
# Запретить листинг директорий
Options -Indexes
# Закрыть доступ к файлам шаблонов
<FilesMatch "\.(tpl|ini|log|txt)">
Order deny,allow
Deny from all
</FilesMatch>
# Необходимо для ЧПУ.
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^([^?]*) index.php?_route_=$1 [L,QSA]
### Additional Settings that may need to be enabled for some servers
### Uncomment the commands by removing the # sign in front of it.
### If you get an "Internal Server Error 500" after enabling, then restore the # as this means your host doesn't allow that.
# 1. If your cart only allows you to add one item at a time, it is possible register_globals is on. This may work to disable it:
# php_flag register_globals off
# 2. If your cart has magic quotes enabled, This may work to disable it:
# php_flag magic_quotes_gpc Off
5)
nano /var/log/apache2/error_exemple.log[Tue Oct 04 06:48:05 2011] [crit] [client 127.0.0.1] (13)Permission denied: /var/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
6)
nano /var/log/apache2/access_exemple.log127.0.0.1 - - [04/Oct/2011:06:48:05 +0000] "GET / HTTP/1.0" 403 484 "-" "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.186 Safari/535.1"