URL: https://www.opennet.me/cgi-bin/openforum/vsluhboard.cgi
Форум: vsluhforumID8
Нить номер: 5732
[ Назад ]

Исходное сообщение
"apache mod_cache"

Отправлено GHopper , 04-Май-08 12:28 
Здравствуйте!

FreeBSD 7.0, apache 2.2, PHP 5.2.5.

# ./apachectl -M
Loaded Modules:
core_module (static)
mpm_prefork_module (static)
http_module (static)
so_module (static)
authn_file_module (shared)
authn_dbm_module (shared)
authn_anon_module (shared)
authn_default_module (shared)
authn_alias_module (shared)
authz_host_module (shared)
authz_groupfile_module (shared)
authz_user_module (shared)
authz_dbm_module (shared)
authz_owner_module (shared)
authz_default_module (shared)
auth_basic_module (shared)
auth_digest_module (shared)
file_cache_module (shared)
cache_module (shared)
disk_cache_module (shared)
dumpio_module (shared)
include_module (shared)
filter_module (shared)
charset_lite_module (shared)
deflate_module (shared)
log_config_module (shared)
logio_module (shared)
env_module (shared)
mime_magic_module (shared)
cern_meta_module (shared)
expires_module (shared)
headers_module (shared)
usertrack_module (shared)
unique_id_module (shared)
setenvif_module (shared)
version_module (shared)
ssl_module (shared)
mime_module (shared)
dav_module (shared)
status_module (shared)
autoindex_module (shared)
asis_module (shared)
info_module (shared)
cgi_module (shared)
dav_fs_module (shared)
vhost_alias_module (shared)
negotiation_module (shared)
dir_module (shared)
imagemap_module (shared)
actions_module (shared)
speling_module (shared)
userdir_module (shared)
alias_module (shared)
rewrite_module (shared)
php5_module (shared)
Syntax OK

Хочу настроить кеширование динамических страниц. Для этого выбрал модуль mod_cache.

#httpd-vhosts.conf
<VirtualHost *:80>
    CacheDefaultExpire 60
    CacheEnable disk /
    CacheDirLevels 3
    CacheDirLength 3
    CacheRoot /var/tmp

    DocumentRoot "/usr/local/www/ome"
    DirectoryIndex index.php
    ServerName ome
</VirtualHost>

chown www:www /var/tmp
chmod a+rw /var/tmp

Рестарт веб-сервера, браузером на ome. Обновляю страничку несколько раз, смотрю в кеш - пусто. Что я не так делаю?


Содержание

Сообщения в этом обсуждении
"apache mod_cache"
Отправлено Сергей , 07-Май-08 01:40 
По умолчанию mod_cache не игнорирует директивы Pragma и Cache-Control и.т.д.
Смотри соответствующие директивы, оно работает.

"apache mod_cache"
Отправлено Reddit , 07-Май-08 03:36 
совсем отстал - уже 7-я версия FreeBSD, а я об этом ничего не знаю =) помню только что 6.2 выходила
>FreeBSD 7.0, apache 2.2, PHP 5.2.5.